public class Tasks extends Object
Java class for tasks complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="tasks"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="taskproperties" type="{}taskproperties"/> <element name="task" type="{}task" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="empty-milestones" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
Modifier and Type | Field and Description |
---|---|
protected String |
emptyMilestones |
protected List<Task> |
task |
protected Taskproperties |
taskproperties |
Constructor and Description |
---|
Tasks() |
Modifier and Type | Method and Description |
---|---|
String |
getEmptyMilestones()
Gets the value of the emptyMilestones property.
|
List<Task> |
getTask()
Gets the value of the task property.
|
Taskproperties |
getTaskproperties()
Gets the value of the taskproperties property.
|
void |
setEmptyMilestones(String value)
Sets the value of the emptyMilestones property.
|
void |
setTaskproperties(Taskproperties value)
Sets the value of the taskproperties property.
|
protected Taskproperties taskproperties
protected String emptyMilestones
public Taskproperties getTaskproperties()
Taskproperties
public void setTaskproperties(Taskproperties value)
value
- allowed object is
Taskproperties
public List<Task> getTask()
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 Jakarta XML Binding object.
This is why there is not a set
method for the task property.
For example, to add a new item, do as follows:
getTask().add(newItem);
Objects of the following type(s) are allowed in the list
Task
public String getEmptyMilestones()
String
Copyright © 2000–2024 Packwood Software. All rights reserved.