Package org.tmatesoft.svn.cli
Class SVNCommandLine
- java.lang.Object
-
- org.tmatesoft.svn.cli.SVNCommandLine
-
public class SVNCommandLine extends java.lang.Object
- Version:
- 1.3
-
-
Field Summary
Fields Modifier and Type Field Description private int
myArgumentIndex
private int
myArgumentPosition
private java.util.Collection
myArguments
private java.lang.String
myCommand
private java.lang.String[]
myInputArguments
private boolean
myNeedsCommand
private java.util.Collection
myOptions
private static java.util.Map
ourOptions
-
Constructor Summary
Constructors Constructor Description SVNCommandLine()
SVNCommandLine(boolean needsCommand)
-
Method Summary
All Methods Static Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.Collection
getArguments()
java.lang.String
getCommandName()
void
init(java.lang.String[] args)
private SVNOptionValue
nextOption()
java.util.Iterator
optionValues()
static void
registerOption(AbstractSVNOption option)
-
-
-
Field Detail
-
ourOptions
private static final java.util.Map ourOptions
-
myCommand
private java.lang.String myCommand
-
myArguments
private java.util.Collection myArguments
-
myOptions
private java.util.Collection myOptions
-
myNeedsCommand
private boolean myNeedsCommand
-
myArgumentIndex
private int myArgumentIndex
-
myArgumentPosition
private int myArgumentPosition
-
myInputArguments
private java.lang.String[] myInputArguments
-
-
Method Detail
-
registerOption
public static void registerOption(AbstractSVNOption option)
-
init
public void init(java.lang.String[] args) throws SVNException
- Throws:
SVNException
-
nextOption
private SVNOptionValue nextOption() throws SVNException
- Throws:
SVNException
-
optionValues
public java.util.Iterator optionValues()
-
getCommandName
public java.lang.String getCommandName()
-
getArguments
public java.util.Collection getArguments()
-
-