Package org.cxml
Class ValueGroup
- java.lang.Object
-
- org.cxml.ValueGroup
-
public class ValueGroup extends java.lang.Object
-
-
Field Summary
Fields Modifier and Type Field Description protected IdReferenceidReferenceprotected java.lang.StringparentIDprotected java.util.List<PropertyValue>propertyValue
-
Constructor Summary
Constructors Constructor Description ValueGroup()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description IdReferencegetIdReference()Gets the value of the idReference property.java.lang.StringgetParentID()Gets the value of the parentID property.java.util.List<PropertyValue>getPropertyValue()Gets the value of the propertyValue property.voidsetIdReference(IdReference value)Sets the value of the idReference property.voidsetParentID(java.lang.String value)Sets the value of the parentID property.
-
-
-
Field Detail
-
idReference
protected IdReference idReference
-
parentID
protected java.lang.String parentID
-
propertyValue
protected java.util.List<PropertyValue> propertyValue
-
-
Method Detail
-
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
-
getParentID
public java.lang.String getParentID()
Gets the value of the parentID property.- Returns:
- possible object is
String
-
setParentID
public void setParentID(java.lang.String value)
Sets the value of the parentID property.- Parameters:
value- allowed object isString
-
getPropertyValue
public java.util.List<PropertyValue> getPropertyValue()
Gets the value of the propertyValue 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 propertyValue property.For example, to add a new item, do as follows:
getPropertyValue().add(newItem);Objects of the following type(s) are allowed in the list
PropertyValue
-
-