As a beginner i got stuck with the use of the List interface. I managed to get a list of some objects which i try to change in some way (e.g. change the color). Using getIntersectingObjects(MyClass.class) fills my list "selected", which i can print out for tests as "MyClass@6c565c85, MyClass@4f8423fb" and so on. By looping through the list:
for (int i = 0; i < selected.size(); i++) {
System.out.println(selected.get(i));
}
i succsessfully print out individual objects (names?).
But: is there any way to use this "names" (or another way) to manipulate the selected objects with their own methods?

