KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > kilim > model > services > RuntimeClassLoader


1 package org.objectweb.kilim.model.services;
2
3 import org.objectweb.kilim.KilimException;
4 import org.objectweb.kilim.description.Type;
5
6 /**
7  * @author dumant
8  *
9  * To change this generated comment edit the template variable "typecomment":
10  * Window>Preferences>Java>Templates.
11  * To enable and disable the creation of type comments go to
12  * Window>Preferences>Java>Code Generation.
13  */

14 public interface RuntimeClassLoader {
15    
16     /**
17      * Method getClass.
18      * @param type :
19      * @return Class :
20      * @throws KilimException :
21      */

22    Class JavaDoc getClass(Type type) throws KilimException;
23    
24     /**
25      * Method getClass.
26      * @param className :
27      * @return Class
28      * @throws KilimException :
29      */

30    Class JavaDoc getClass(String JavaDoc className) throws KilimException;
31    
32 }
33
Popular Tags