com.swath
Interface CommandIfc

All Known Implementing Classes:
com.swath.cmd.SwathCommand, UserDefinedCommand

public interface CommandIfc

This is the Command interface.

Since:
SWATH 1.3

Method Summary
 java.lang.String getClassName()
          Gets the command class name.
 java.lang.String getName()
          Gets the name of the command.
 java.util.Enumeration getParams()
          Gets the command parameters.
 boolean isInternal()
          Indicates if this is an internal SWATH command or not.
 boolean isUserDefined()
          Indicates if this command is user defined or not.
 

Method Detail

getName

public java.lang.String getName()
Gets the name of the command.

Returns:
The command name.
Since:
SWATH 1.3

getParams

public java.util.Enumeration getParams()
Gets the command parameters.

Returns:
The command parameters.
Since:
SWATH 1.3

isUserDefined

public boolean isUserDefined()
Indicates if this command is user defined or not.

Returns:
true if user defined, otherwise false.
Since:
SWATH 1.3

isInternal

public boolean isInternal()
Indicates if this is an internal SWATH command or not.

Returns:
true if internal, otherwise false.
Since:
SWATH 1.6.2

getClassName

public java.lang.String getClassName()
Gets the command class name.

Returns:
The class name.
Since:
SWATH 1.3