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
Integer
public String getName()
String
public void setName(String value)
value
- allowed object is
String
public String getColor()
String
public void setColor(String value)
value
- allowed object is
String
public String getMeeting()
String
public void setMeeting(String value)
value
- allowed object is
String
public LocalDateTime getStart()
String
public void setStart(LocalDateTime value)
value
- allowed object is
String
public Integer getDuration()
Integer
public void setDuration(Integer value)
value
- allowed object is
Integer
public Integer getComplete()
Integer
public void setComplete(Integer value)
value
- allowed object is
Integer
public String getExpand()
String
public void setExpand(String value)
value
- allowed object is
String
public LocalDateTime getThirdDate()
String
public void setThirdDate(LocalDateTime value)
value
- allowed object is
String
public Integer getThirdDateConstraint()
Integer
public void setThirdDateConstraint(Integer value)
value
- allowed object is
Integer
public Integer getPriority()
Integer
public void setPriority(Integer value)
value
- allowed object is
Integer
public String getWebLink()
String
Copyright © 2000–2024 Packwood Software. All rights reserved.