| java.lang.Object jsint.Import
Import | public class Import (Code) | | |
Field Summary | |
final public static Vector | singles Fields singles and wilds should be HashSets which won't exist
until JDK 1.2. | final public static Hashtable | table | final public static Vector | wilds |
singles | final public static Vector singles(Code) | | Fields singles and wilds should be HashSets which won't exist
until JDK 1.2. So we simulate them with Vectors, which existed
since JDK 1.0.
|
addImport | public static synchronized void addImport(String name)(Code) | | Add an import, clearing the cache if it's wild. *
|
classNamed | public static Class classNamed(String name)(Code) | | Find a Class named name either relative to imports, or
absolute, or error. Names of the form $name are
interpreted as absolute specifications for package-less classes
for historical reasons.
|
forName | public static Class forName(String name)(Code) | | Ask the ClassLoader for a class given its full name. *
|
getClassLoader | public static synchronized ClassLoader getClassLoader()(Code) | | Get the ClassLoader used to look up classes. *
|
maybeClassNamed | public static synchronized Class maybeClassNamed(String name)(Code) | | Returns a class or return null. *
|
setClassLoader | public static synchronized void setClassLoader(ClassLoader cl)(Code) | | Set the ClassLoader used to look up classes. *
|
|
|