com.palserv.XMidi
Class CmdLineArgs

java.lang.Object
  extended by com.palserv.XMidi.CmdLineArgs

public class CmdLineArgs
extends java.lang.Object

internal class

NOT FOR EXTERNAL USE

This class is more like a data structure. It contains variables, but no methods. It is used to pass these variables as a return from the Util.getCmdLine method, which is where the command line arguments are documented.


Field Summary
 java.lang.String inFile
          Used to hold the first non-option command line argument.
 java.lang.String outFile
          Used to hold the second non-option command line argument.
 java.lang.String parserName
           
 boolean verbose
          Used to hold the answer of "was the -v option coded?" defaults to false.
 
Constructor Summary
CmdLineArgs()
           
 
Method Summary
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

inFile

public java.lang.String inFile
Used to hold the first non-option command line argument. This is the name of the input file.


parserName

public java.lang.String parserName

outFile

public java.lang.String outFile
Used to hold the second non-option command line argument. This is the name of the output file.


verbose

public boolean verbose
Used to hold the answer of "was the -v option coded?" defaults to false.

Constructor Detail

CmdLineArgs

public CmdLineArgs()