I am trying to create a UML class diagram for one of my classes and am unsure how to represent a certain element of the class. One of the methods within my class has a method within it. How would I represent this in the diagram?
public void start(){ ... @Override public void run(){ ... } }