Package gda.jython
Interface AliasedCommandProvider
- All Known Subinterfaces:
Translator
- All Known Implementing Classes:
JythonServerFacade,MockJythonServerFacade,NoopTranslator,TokenStreamTranslator
public interface AliasedCommandProvider
-
Method Summary
Modifier and TypeMethodDescriptionReturns the list of alias in the GDA command serverReturns the list of variable argument alias in the GDA command serverbooleanChecks if the the given command is aliased (either vararg or not)
-
Method Details
-
getAliasedCommands
Collection<String> getAliasedCommands()Returns the list of alias in the GDA command server- Returns:
- the aliased commands
-
getAliasedVarargCommands
Collection<String> getAliasedVarargCommands()Returns the list of variable argument alias in the GDA command server- Returns:
- the list of variable argument alias
-
hasAlias
Checks if the the given command is aliased (either vararg or not)- Parameters:
command- the string to check- Returns:
- whether the command is aliased or not
-