org.jtiger.framework
Interface ClassAliasMapping


public interface ClassAliasMapping

Provides a mapping between user-friendly alias names for class names that are used by the framework.

Version:
2.1
Build Number 0376
Build Time 2006-07-28 01:50.16.218 CET (GMT + 1)
Author:
Tony Morris

Method Summary
 ReadOnlyArray<String> getAliases()
          Returns all the aliases that are mapped to a class name.
 String getMappedClassName(String alias)
          Returns the class name for the given alias.
 

Method Detail

getMappedClassName

String getMappedClassName(String alias)
                          throws NullPointerException
Returns the class name for the given alias. May return null if there is no class name mapping for the given alias.

Parameters:
alias - The alias to obtain the class name for.
Returns:
The class name for the given alias. May return null if there is no class name mapping for the given alias.
Throws:
NullPointerException - If alias is null.

getAliases

ReadOnlyArray<String> getAliases()
Returns all the aliases that are mapped to a class name.

Returns:
All the aliases that are mapped to a class name.