ClassMap
is a class that maps short names (i.e. short, lower case strings) to java classes and can instantiate them. This is useful for dynamic resolution of classes but with a small set of known defaults that have a short name. If the short name is not in the default set, this class will treat the short name as a fully qualified Java class name and load it. This class does the requisite checking--that the class exists, that it can be loaded, that it is of the appropriate type, that it can be instantiated, etc.
@author Ben L. Titzer
|
|
|
|
|
|
|
|
|
|
|
|
|
|