net.sf.mpxj.planner.schema
Class Task

java.lang.Object
  extended by net.sf.mpxj.planner.schema.Task

public class Task
extends Object


Field Summary
protected  Constraint constraint
           
protected  String duration
           
protected  String effort
           
protected  String end
           
protected  String id
           
protected  String name
           
protected  String note
           
protected  String percentComplete
           
protected  Predecessors predecessors
           
protected  String priority
           
protected  Properties properties
           
protected  String scheduling
           
protected  String start
           
protected  List<Task> task
           
protected  String type
           
protected  String work
           
protected  String workStart
           
 
Constructor Summary
Task()
           
 
Method Summary
 Constraint getConstraint()
          Gets the value of the constraint property.
 String getDuration()
          Gets the value of the duration property.
 String getEffort()
          Gets the value of the effort property.
 String getEnd()
          Gets the value of the end property.
 String getId()
          Gets the value of the id property.
 String getName()
          Gets the value of the name property.
 String getNote()
          Gets the value of the note property.
 String getPercentComplete()
          Gets the value of the percentComplete property.
 Predecessors getPredecessors()
          Gets the value of the predecessors property.
 String getPriority()
          Gets the value of the priority property.
 Properties getProperties()
          Gets the value of the properties property.
 String getScheduling()
          Gets the value of the scheduling property.
 String getStart()
          Gets the value of the start property.
 List<Task> getTask()
          Gets the value of the task property.
 String getType()
          Gets the value of the type property.
 String getWork()
          Gets the value of the work property.
 String getWorkStart()
          Gets the value of the workStart property.
 void setConstraint(Constraint value)
          Sets the value of the constraint property.
 void setDuration(String value)
          Sets the value of the duration property.
 void setEffort(String value)
          Sets the value of the effort property.
 void setEnd(String value)
          Sets the value of the end property.
 void setId(String value)
          Sets the value of the id property.
 void setName(String value)
          Sets the value of the name property.
 void setNote(String value)
          Sets the value of the note property.
 void setPercentComplete(String value)
          Sets the value of the percentComplete property.
 void setPredecessors(Predecessors value)
          Sets the value of the predecessors property.
 void setPriority(String value)
          Sets the value of the priority property.
 void setProperties(Properties value)
          Sets the value of the properties property.
 void setScheduling(String value)
          Sets the value of the scheduling property.
 void setStart(String value)
          Sets the value of the start property.
 void setType(String value)
          Sets the value of the type property.
 void setWork(String value)
          Sets the value of the work property.
 void setWorkStart(String value)
          Sets the value of the workStart property.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

id

protected String id

name

protected String name

note

protected String note

effort

protected String effort

start

protected String start

end

protected String end

workStart

protected String workStart

duration

protected String duration

work

protected String work

percentComplete

protected String percentComplete

priority

protected String priority

type

protected String type

scheduling

protected String scheduling

properties

protected Properties properties

constraint

protected Constraint constraint

predecessors

protected Predecessors predecessors

task

protected List<Task> task
Constructor Detail

Task

public Task()
Method Detail

getId

public String getId()
Gets the value of the id property.

Returns:
possible object is String

setId

public void setId(String value)
Sets the value of the id property.

Parameters:
value - allowed object is String

getName

public String getName()
Gets the value of the name property.

Returns:
possible object is String

setName

public void setName(String value)
Sets the value of the name property.

Parameters:
value - allowed object is String

getNote

public String getNote()
Gets the value of the note property.

Returns:
possible object is String

setNote

public void setNote(String value)
Sets the value of the note property.

Parameters:
value - allowed object is String

getEffort

public String getEffort()
Gets the value of the effort property.

Returns:
possible object is String

setEffort

public void setEffort(String value)
Sets the value of the effort property.

Parameters:
value - allowed object is String

getStart

public String getStart()
Gets the value of the start property.

Returns:
possible object is String

setStart

public void setStart(String value)
Sets the value of the start property.

Parameters:
value - allowed object is String

getEnd

public String getEnd()
Gets the value of the end property.

Returns:
possible object is String

setEnd

public void setEnd(String value)
Sets the value of the end property.

Parameters:
value - allowed object is String

getWorkStart

public String getWorkStart()
Gets the value of the workStart property.

Returns:
possible object is String

setWorkStart

public void setWorkStart(String value)
Sets the value of the workStart property.

Parameters:
value - allowed object is String

getDuration

public String getDuration()
Gets the value of the duration property.

Returns:
possible object is String

setDuration

public void setDuration(String value)
Sets the value of the duration property.

Parameters:
value - allowed object is String

getWork

public String getWork()
Gets the value of the work property.

Returns:
possible object is String

setWork

public void setWork(String value)
Sets the value of the work property.

Parameters:
value - allowed object is String

getPercentComplete

public String getPercentComplete()
Gets the value of the percentComplete property.

Returns:
possible object is String

setPercentComplete

public void setPercentComplete(String value)
Sets the value of the percentComplete property.

Parameters:
value - allowed object is String

getPriority

public String getPriority()
Gets the value of the priority property.

Returns:
possible object is String

setPriority

public void setPriority(String value)
Sets the value of the priority property.

Parameters:
value - allowed object is String

getType

public String getType()
Gets the value of the type property.

Returns:
possible object is String

setType

public void setType(String value)
Sets the value of the type property.

Parameters:
value - allowed object is String

getScheduling

public String getScheduling()
Gets the value of the scheduling property.

Returns:
possible object is String

setScheduling

public void setScheduling(String value)
Sets the value of the scheduling property.

Parameters:
value - allowed object is String

getProperties

public Properties getProperties()
Gets the value of the properties property.

Returns:
possible object is Properties

setProperties

public void setProperties(Properties value)
Sets the value of the properties property.

Parameters:
value - allowed object is Properties

getConstraint

public Constraint getConstraint()
Gets the value of the constraint property.

Returns:
possible object is Constraint

setConstraint

public void setConstraint(Constraint value)
Sets the value of the constraint property.

Parameters:
value - allowed object is Constraint

getPredecessors

public Predecessors getPredecessors()
Gets the value of the predecessors property.

Returns:
possible object is Predecessors

setPredecessors

public void setPredecessors(Predecessors value)
Sets the value of the predecessors property.

Parameters:
value - allowed object is Predecessors

getTask

public List<Task> getTask()
Gets the value of the task property.

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 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



Copyright © 2012. All Rights Reserved.