com.togethersoft.openapi.util.classloaders
Interface CachelessClassLoader


public interface CachelessClassLoader

Unlike the standard class loader from JDK this interface presents loader that does not create cache for loaded classes. So if they has been changed on the disk then class implements this interface can reload them.

Author:
TogetherSoft

Method Summary
 ClassforFile(String filePath)
           Returns Class by the specified class path.
 ClassforName(String className)
           Returns Class by the specified name.

Method Detail

forFile

public Class forFile(String filePath)
Returns Class by the specified class path.
Parameters:
filePath - String that specifies path of a class
Returns: Class

forName

public Class forName(String className)
Returns Class by the specified name.
Parameters:
className - String that specifies name of a class
Returns: Class