Package org.cxml
Class ContractItemStatus
- java.lang.Object
-
- org.cxml.ContractItemStatus
-
public class ContractItemStatus extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<Comments>commentsprotected IdReferenceidReferenceprotected ItemStatusitemStatus
-
Constructor Summary
Constructors Constructor Description ContractItemStatus()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<Comments>getComments()Gets the value of the comments property.IdReferencegetIdReference()Gets the value of the idReference property.ItemStatusgetItemStatus()Gets the value of the itemStatus property.voidsetIdReference(IdReference value)Sets the value of the idReference property.voidsetItemStatus(ItemStatus value)Sets the value of the itemStatus property.
-
-
-
Field Detail
-
itemStatus
protected ItemStatus itemStatus
-
idReference
protected IdReference idReference
-
comments
protected java.util.List<Comments> comments
-
-
Method Detail
-
getItemStatus
public ItemStatus getItemStatus()
Gets the value of the itemStatus property.- Returns:
- possible object is
ItemStatus
-
setItemStatus
public void setItemStatus(ItemStatus value)
Sets the value of the itemStatus property.- Parameters:
value- allowed object isItemStatus
-
getIdReference
public IdReference getIdReference()
Gets the value of the idReference property.- Returns:
- possible object is
IdReference
-
setIdReference
public void setIdReference(IdReference value)
Sets the value of the idReference property.- Parameters:
value- allowed object isIdReference
-
getComments
public java.util.List<Comments> getComments()
Gets the value of the comments 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
setmethod for the comments property.For example, to add a new item, do as follows:
getComments().add(newItem);Objects of the following type(s) are allowed in the list
Comments
-
-