I used a plug-in in Eclipse Neon which is called ObjectAid, it's a plug-in that generates a UML Diagram automatically.
Now I understand everything in the generated UML except for one thing, which is the label next to the arrow "~class instance". What does that part mean?
This is just an identical image, not the real one, of the UML generated so please understand that that's just an example.
EDIT:
//more codes here
static APAGenerator generateAPA = new APAGenerator();
public static void main(String[] args) {
try {
generateAPA.run();
} catch (Exception e) {
e.printStackTrace();
}
}
//more codes here