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 dumant8 *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 to12 * 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 getClass(Type type) throws KilimException;23 24 /**25 * Method getClass.26 * @param className :27 * @return Class28 * @throws KilimException :29 */30 Class getClass(String className) throws KilimException;31 32 }33