public class Task extends Object
Java class for task complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="task">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<sequence>
<element name="depend" type="{}depend" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<element name="customproperty" type="{}custom-task-property" maxOccurs="unbounded" minOccurs="0"/>
<element name="task" type="{}task" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="id" type="{http://www.w3.org/2001/XMLSchema}int" />
<attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="color" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="meeting" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="start" type="{http://www.w3.org/2001/XMLSchema}date" />
<attribute name="duration" type="{http://www.w3.org/2001/XMLSchema}int" />
<attribute name="complete" type="{http://www.w3.org/2001/XMLSchema}int" />
<attribute name="expand" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="thirdDate" type="{http://www.w3.org/2001/XMLSchema}date" />
<attribute name="thirdDate-constraint" type="{http://www.w3.org/2001/XMLSchema}int" />
<attribute name="priority" type="{http://www.w3.org/2001/XMLSchema}int" />
<attribute name="webLink" type="{http://www.w3.org/2001/XMLSchema}string" />
</restriction>
</complexContent>
</complexType>
| Modifier and Type | Field and Description |
|---|---|
protected String |
color |
protected Integer |
complete |
protected List<CustomTaskProperty> |
customproperty |
protected List<Depend> |
depend |
protected Integer |
duration |
protected String |
expand |
protected Integer |
id |
protected String |
meeting |
protected String |
name |
protected Integer |
priority |
protected LocalDateTime |
start |
protected List<Task> |
task |
protected LocalDateTime |
thirdDate |
protected Integer |
thirdDateConstraint |
protected String |
webLink |
| Constructor and Description |
|---|
Task() |
| Modifier and Type | Method and Description |
|---|---|
String |
getColor()
Gets the value of the color property.
|
Integer |
getComplete()
Gets the value of the complete property.
|
List<CustomTaskProperty> |
getCustomproperty()
Gets the value of the customproperty property.
|
List<Depend> |
getDepend()
Gets the value of the depend property.
|
Integer |
getDuration()
Gets the value of the duration property.
|
String |
getExpand()
Gets the value of the expand property.
|
Integer |
getId()
Gets the value of the id property.
|
String |
getMeeting()
Gets the value of the meeting property.
|
String |
getName()
Gets the value of the name property.
|
Integer |
getPriority()
Gets the value of the priority property.
|
LocalDateTime |
getStart()
Gets the value of the start property.
|
List<Task> |
getTask()
Gets the value of the task property.
|
LocalDateTime |
getThirdDate()
Gets the value of the thirdDate property.
|
Integer |
getThirdDateConstraint()
Gets the value of the thirdDateConstraint property.
|
String |
getWebLink()
Gets the value of the webLink property.
|
void |
setColor(String value)
Sets the value of the color property.
|
void |
setComplete(Integer value)
Sets the value of the complete property.
|
void |
setDuration(Integer value)
Sets the value of the duration property.
|
void |
setExpand(String value)
Sets the value of the expand property.
|
void |
setId(Integer value)
Sets the value of the id property.
|
void |
setMeeting(String value)
Sets the value of the meeting property.
|
void |
setName(String value)
Sets the value of the name property.
|
void |
setPriority(Integer value)
Sets the value of the priority property.
|
void |
setStart(LocalDateTime value)
Sets the value of the start property.
|
void |
setThirdDate(LocalDateTime value)
Sets the value of the thirdDate property.
|
void |
setThirdDateConstraint(Integer value)
Sets the value of the thirdDateConstraint property.
|
void |
setWebLink(String value)
Sets the value of the webLink property.
|
protected List<CustomTaskProperty> customproperty
protected Integer id
protected String name
protected String color
protected String meeting
protected LocalDateTime start
protected Integer duration
protected Integer complete
protected String expand
protected LocalDateTime thirdDate
protected Integer thirdDateConstraint
protected Integer priority
protected String webLink
public List<Depend> getDepend()
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 depend property.
For example, to add a new item, do as follows:
getDepend().add(newItem);
Objects of the following type(s) are allowed in the list
Depend
public List<CustomTaskProperty> getCustomproperty()
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 customproperty property.
For example, to add a new item, do as follows:
getCustomproperty().add(newItem);
Objects of the following type(s) are allowed in the list
CustomTaskProperty
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 void setId(Integer value)
value - allowed object is
Integerpublic String getName()
Stringpublic void setName(String value)
value - allowed object is
Stringpublic String getColor()
Stringpublic void setColor(String value)
value - allowed object is
Stringpublic String getMeeting()
Stringpublic void setMeeting(String value)
value - allowed object is
Stringpublic LocalDateTime getStart()
Stringpublic void setStart(LocalDateTime value)
value - allowed object is
Stringpublic Integer getDuration()
Integerpublic void setDuration(Integer value)
value - allowed object is
Integerpublic Integer getComplete()
Integerpublic void setComplete(Integer value)
value - allowed object is
Integerpublic String getExpand()
Stringpublic void setExpand(String value)
value - allowed object is
Stringpublic LocalDateTime getThirdDate()
Stringpublic void setThirdDate(LocalDateTime value)
value - allowed object is
Stringpublic Integer getThirdDateConstraint()
Integerpublic void setThirdDateConstraint(Integer value)
value - allowed object is
Integerpublic Integer getPriority()
Integerpublic void setPriority(Integer value)
value - allowed object is
Integerpublic String getWebLink()
StringCopyright © 2000–2025 MPXJ. All rights reserved.