public class AliasManager extends Object
Constructor and Description |
---|
AliasManager()
Creates a new AliasManager, populating it with default Aliases.
|
Modifier and Type | Method and Description |
---|---|
void |
addAlias(Alias alias)
Adds an Alias, replacing any previous entries with the same name.
|
Alias |
getAlias(String aliasName)
Returns the Alias with the specified name
|
Set |
getAliases()
Returns a Set that is a snapshot of the Alias list.
|
void |
loadFromProperties(Properties properties)
Loads Aliases from a java.util.Properties file located at the specified URL.
|
void |
removeAlias(String aliasName)
Removes the Alias with the specified name from the AliasManager.
|
public AliasManager()
public void loadFromProperties(Properties properties)
[alias name]=[fully qualified classname]
each of which may have an optional
[alias name].desc=[alias description]
For example, to create an alias called " myprog
" for class
com.mydomain.myapp.MyProg
, the following properties would be defined:
myprog=com.mydomain.myapp.MyProg
myprog.desc=Runs my program.
properties
- the Properties to load.public void addAlias(Alias alias)
alias
- the Alias to addpublic Set getAliases()
public void removeAlias(String aliasName)
aliasName
- the name of the Alias to removeCopyright © 2024. All rights reserved.