|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectcom.martiansoftware.nailgun.AliasManager
An AliasManager is used to store and lookup command Aliases by name. See Alias for more details.
| Constructor Summary | |
AliasManager()
Creates a new AliasManager, populating it with default Aliases. |
|
| Method Summary | |
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. |
| Methods inherited from class java.lang.Object |
equals, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
public AliasManager()
| Method Detail |
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 removepublic Alias getAlias(String aliasName)
aliasName - the name of the Alias to retrieve
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||