| java.lang.Object org.jacorb.ir.RepositoryID
RepositoryID | public class RepositoryID (Code) | | This class builds CORBA repository IDs from Java classes
or class names, or builds Java class names from repository
IDs
|
className | public static String className(String repId, ClassLoader loader)(Code) | | Returns the fully qualified name of the Java class to which
the given Repository ID is mapped.
|
className | public static String className(String repId, String suffix, ClassLoader loader)(Code) | | Returns the fully qualified name of the Java class to which
the given Repository ID is mapped, with a given suffix appended
to the class name. For example, the string "Helper" can be used
as the suffix to find the helper class for a given Repository ID.
|
createBoxedValueHelper | public static BoxedValueHelper createBoxedValueHelper(String repId, ClassLoader loader)(Code) | | Creates a BoxedValueHelper instance for a given repository ID.
Parameters: repId - the repository ID of the boxed value type a newly created BoxedValueHelper, or null if noBoxedValueHelper class can be found for that ID throws: RuntimeException - if creation of the Helper instance fails |
toRepositoryID | public static String toRepositoryID(String className, boolean resolveClass, ClassLoader loader)(Code) | | Converts a class name to a Repository ID.
Parameters: className - the class name to convert Parameters: resolveClass - indicates whether the method should try toresolve and load the class. If true and the class couldnot be loaded, an IllegalArgumentException will be thrown |
|
|