com.ibm.pdp.product.tools.extension
Interface IRppOption

All Known Implementing Classes:
RppOption

public interface IRppOption

This interface represents a RPPz command line option. It is used to extends the rpp.bat batch process.


Field Summary
static java.lang.String copyright
           
 
Method Summary
 java.lang.String[] getAllowedValues()
          Returns the allowed values for this option.
 java.lang.String getOptionComments()
          Returns the option comments.
 java.lang.String getOptionName()
          Returns the option name.
 java.lang.String getOptionShortcut()
          Returns the option shortcut.
 boolean isBoolean()
          Returns true if the option is a boolean option
 boolean isLightweight()
          Returns true is the option is lightweight
 boolean isPrivate()
          Returns true is the option is private
 boolean isRepeated()
          Returns true is this option can be repeated in the commande line.
 boolean isRequired()
          Returns true if the option is mandatory.
 

Field Detail

copyright

static final java.lang.String copyright
See Also:
Constant Field Values
Method Detail

getAllowedValues

java.lang.String[] getAllowedValues()
Returns the allowed values for this option.

Returns:

getOptionComments

java.lang.String getOptionComments()
Returns the option comments.

Returns:

getOptionName

java.lang.String getOptionName()
Returns the option name.

Returns:

getOptionShortcut

java.lang.String getOptionShortcut()
Returns the option shortcut.

Returns:

isBoolean

boolean isBoolean()
Returns true if the option is a boolean option. - a boolean option have no associated value.

Returns:

isLightweight

boolean isLightweight()
Returns true is the option is lightweight. - A lightweight subcommand option can also be launched from the lightweight client (lrpp.bat). - Only valid for subcommand options.

Returns:

isPrivate

boolean isPrivate()
Returns true is the option is private. - A private option will not be displayed in the syntaxe.

Returns:

isRepeated

boolean isRepeated()
Returns true is this option can be repeated in the commande line.

Returns:

isRequired

boolean isRequired()
Returns true if the option is mandatory.

Returns: