Interface Arg
-
- All Known Implementing Classes:
Commandline.Argument
public interface Arg
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
setFile(java.io.File value)
void
setLine(java.lang.String line)
void
setMask(boolean mask)
To mask the argument value when a command line ask to print his arguments.void
setValue(java.lang.String value)
-
-
-
Method Detail
-
setValue
void setValue(java.lang.String value)
- Parameters:
value
- Set the value.
-
setLine
void setLine(java.lang.String line)
- Parameters:
line
- The line of arguments.
-
setFile
void setFile(java.io.File value)
- Parameters:
value
- The file to be set.
-
setMask
void setMask(boolean mask)
To mask the argument value when a command line ask to print his arguments.- Parameters:
mask
- new state of themaks
property- Since:
- 0.6
-
-