|
||||||||||
| PREV CLASS Documentation homepage NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface IlpClassLoaderService
Defines a service to load external classes that will be used within an ILOG JTGO application.
This service is used by the different components to load user-defined classes that are part of the business model or the style sheet configuration.
If you have your own class loader mechanism, implement this interface and register it in your application context as illustrated below:
IlpDefaultContext context = ...; IlpClassLoaderService service = new MyClassLoaderService(); context.addService(IlpClassLoaderService.class, service);
IlpDefaultContext.addService(java.lang.Class, java.lang.Object)| Method Summary | |
|---|---|
Class |
loadClass(String name)
Loads the class with the specified name. |
| Method Detail |
|---|
Class loadClass(String name)
throws ClassNotFoundException
name - The name of the class.
java.lang.Class object.
java.lang.ClassNotFoundException
ClassNotFoundException
|
||||||||||
| PREV CLASS Documentation homepage NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||