allensoft.javacvs.client.ui.command
Class TagOptionsParser

java.lang.Object
  |
  +--allensoft.util.OptionsParser
        |
        +--allensoft.javacvs.client.ui.command.TagOptionsParser

public class TagOptionsParser
extends OptionsParser


Inner classes inherited from class allensoft.util.OptionsParser
OptionsParser.ListOfOptions, OptionsParser.Option, OptionsParser.OptionDefinition, OptionsParser.OptionGroup
 
Constructor Summary
TagOptionsParser()
           
 
Method Summary
protected  java.lang.Object createOptions()
          Creates the Options object for this parser.
protected  void processOption(java.lang.Object options, OptionsParser.Option option, OptionsParser.ListOfOptions previousOptions)
          Override this method to process an individual option.
 
Methods inherited from class allensoft.util.OptionsParser
addOptionDefinition, getAllowSingleCharFlagsToBeGroupedTogether, getOptionDefinition, getOptionDefinition, getOptionDefinitionCount, getOptionIdentifier, parseOptions, processUnrecognizedOption, setAllowSingleCharFlagsToBeGroupedTogether, setOptionIdentifier
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Constructor Detail

TagOptionsParser

public TagOptionsParser()
Method Detail

createOptions

protected java.lang.Object createOptions()
Description copied from class: OptionsParser
Creates the Options object for this parser.
Overrides:
createOptions in class OptionsParser

processOption

protected void processOption(java.lang.Object options,
                             OptionsParser.Option option,
                             OptionsParser.ListOfOptions previousOptions)
                      throws java.text.ParseException
Description copied from class: OptionsParser
Override this method to process an individual option.
Overrides:
processOption in class OptionsParser
Following copied from class: allensoft.util.OptionsParser
Parameters:
options - the options object to update the state of given this option. This object is created by the createOptions method.
option - an option parsed from the command line
previousOptions - a list of previously parsed options before this option was reached (ie options specified on the command line before this option).