SSJ  3.3.1
Stochastic Simulation in Java
Public Member Functions | List of all members
ClassFinder Class Reference

Utility class used to convert a simple class name to a fully qualified class object. More...

Inheritance diagram for ClassFinder:
[legend]
Collaboration diagram for ClassFinder:
[legend]

Public Member Functions

 ClassFinder ()
 Constructs a new class finder with an empty list of import declarations.
 
List< String > getImports ()
 Returns the current list of import declarations. More...
 
void saveImports ()
 Saves the current import list on the import stack. More...
 
void restoreImports ()
 Restores the list of import declarations. More...
 
Class<?> findClass (String name) throws ClassNotFoundException, NameConflictException
 Tries to find the class corresponding to the simple name name. More...
 
String getSimpleName (Class<?> cls)
 Returns the simple name of the class cls that can be used when the imports contained in this class finder are used. More...
 
ClassFinder clone ()
 Clones this class finder, and copies its lists of import declarations.
 

Detailed Description

Utility class used to convert a simple class name to a fully qualified class object.

The Class class can be used to obtain information about a class (its name, its fields, methods, constructors, etc.), and to construct objects, even if the exact class is known at runtime only. It provides a java.lang.Class.forName static method converting a string to a Class, but the given string must be a fully qualified name.

Sometimes, configuration files may need to contain Java class names. After they are extracted from the file, these class names are given to java.lang.Class.forName to be converted into Class objects. Unfortunately, only fully qualified class names will be accepted as input, which clutters configuration files, especially if long package names are used. This class permits the definition of a set of import declarations in a way similar to the Java Language Specification [74] . It provides methods to convert a simple class name to a Class object and to generate a simple name from a Class object, based on the import rules.

The first step for using a class finder is to construct an instance of this class. Then, one needs to retrieve the initially empty list of import declarations by using getImports, and update it with the actual import declarations. Then, the method findClass can find a class using the import declarations. For example, the following code retrieves the class object for the List class in package java.util

cf.getImports().add ("java.util.*");
Class<?> listClass = cf.findClass ("List");

Member Function Documentation

◆ findClass()

Class<?> findClass ( String  name) throws ClassNotFoundException, NameConflictException

Tries to find the class corresponding to the simple name name.

The method first considers the argument as a fully qualified class name and calls java.lang.Class.forName (name). If the class cannot be found, it considers the argument as a simple name. A simple name refers to a class without specifying the package declaring it. To convert simple names to qualified names, the method iterates through all the strings in the list returned by getImports, applying the same rules as a Java compiler to resolve the class name. However, if an imported package or class does not exist, it will be ignored whereas the compiler would stop with an error.

For the class with simple name name to be loaded, it must be imported explicitly (single-type import) or one of the imported packages must contain it (type import on-demand). If the class with name name is imported explicitly, this import declaration has precedence over any imported packages. If several import declaration match the given simple name, e.g., if several fully qualified names with the same simple name are imported, or if a class with simple name name exists in several packages, a NameConflictException is thrown.

Parameters
namethe simple name of the class.
Returns
a reference to the class being loaded.
Exceptions
ClassNotFoundExceptionif the class cannot be loaded.
NameConflictExceptionif a name conflict occurred.

◆ getImports()

List<String> getImports ( )

Returns the current list of import declarations.

This list may contain only String ’s of the form java.class.name or java.package.name.*.

Returns
the current list of import declarations.

◆ getSimpleName()

String getSimpleName ( Class<?>  cls)

Returns the simple name of the class cls that can be used when the imports contained in this class finder are used.

For example, if java.lang.String.class is given to this method, String is returned if java.lang.* is among the import declarations.

Note: this method does not try to find name conflicts. This operation is performed by findClass(String) only. For example, if the list of imported declarations contains foo.bar.* and test.Foo, and the simple name for test.Foo is queried, the method returns Foo even if the package foo.bar contains a Foo class.

Parameters
clsthe class for which the simple name is queried.
Returns
the simple class name.

◆ restoreImports()

void restoreImports ( )

Restores the list of import declarations.

This method removes the last list of import declarations from the stack. If the stack contains only one list, this list is cleared.

◆ saveImports()

void saveImports ( )

Saves the current import list on the import stack.

This method makes a copy of the list returned by getImports and puts it on top of a stack to be restored later by restoreImports.


The documentation for this class was generated from the following file: