I just got Strings (out of a database), which are not even the names of the objects (but properties of them) and have to work on these classes and objects.
EDIT: To make things clear: I got 1 jar (the programm core), in which i load/open many different jar-file. In the core, i got a class which is accessing a database with all classnames and classobject-properties (not the objectnames, but properties of the objects) of all other jar files, saved as Strings.
Now i want to get access to the Objects in the jars by using these Strings. First I call the classloader with the classnames.
Now i want to open/load another jar out of this jar and transfere data to it. Like jumping from one jar to another jar.
There are many problems in it, which are confusing me. For example i cant edit the contructors(/or create new ones), because it would destroy the functionality of our software.
Question: Is there a way to get the real objects with just using Strings? Would love to find a way around Reflections.