public class CommandLine extends Object
Java class for CommandLine complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CommandLine">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="Command" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/>
<element name="Arguments" type="{http://www.w3.org/2001/XMLSchema}string" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected List<String> |
arguments |
protected String |
command |
| Constructor and Description |
|---|
CommandLine() |
| Modifier and Type | Method and Description |
|---|---|
List<String> |
getArguments()
Gets the value of the arguments property.
|
String |
getCommand()
Gets the value of the command property.
|
void |
setCommand(String value)
Sets the value of the command property.
|
public String getCommand()
Stringpublic void setCommand(String value)
value - allowed object is
Stringpublic List<String> getArguments()
This accessor method returns a reference to the live list,
not a snapshot. Therefore any modification you make to the
returned list will be present inside the JAXB object.
This is why there is not a set method for the arguments property.
For example, to add a new item, do as follows:
getArguments().add(newItem);
Objects of the following type(s) are allowed in the list
String
Copyright © 2017. All rights reserved.