I have created a new class with the following code:
//...name and fields etc
.make()
.load(NetworkClassManager.class.getClassLoader())
.getLoaded();
Which has created my class called TestNetwork_ND
, but when I try access it using:
NetworkClassManager.class.getClassLoader().loadClass("TestNetwork_ND")
I get the following error:
java.lang.ClassNotFoundException: TestNetwork_ND
How can I load it onto the classpath properly so that I can access it in the above way?