Interface Arg
-
- All Known Implementing Classes:
Commandline.Argument
public interface Arg
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidsetFile(java.io.File value)voidsetLine(java.lang.String line)voidsetMask(boolean mask)To mask the argument value when a command line ask to print his arguments.voidsetValue(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 themaksproperty- Since:
- 0.6
-
-