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
- Since: Together 3.2
| Method Summary |
Class | forFile(String filePath) Returns Class by the specified class path. |
Class | forName(String className) Returns Class by the specified name. |
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