Class VariableSetAndRefCT
- java.lang.Object
-
- fi.tut.mei.resdescapi.rdapi.model.rd.VariableSetCT
-
- fi.tut.mei.resdescapi.rdapi.model.rd.VariableSetAndRefCT
-
- Direct Known Subclasses:
PropertyVarCT
public class VariableSetAndRefCT extends VariableSetCT
grouping for Variables and VariableRefs as one entityJava class for VariableSetAndRef_CT complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="VariableSetAndRef_CT"> <complexContent> <extension base="{https://resourcedescription.rd.tuni.fi/XMLSchema/2016}VariableSet_CT"> <sequence> <element ref="{https://resourcedescription.rd.tuni.fi/XMLSchema/2016}VariableRef" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<VariableRefCT>
variableRef
-
Fields inherited from class fi.tut.mei.resdescapi.rdapi.model.rd.VariableSetCT
variableBoolean, variableNum, variableString
-
-
Constructor Summary
Constructors Constructor Description VariableSetAndRefCT()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<VariableRefCT>
getVariableRef()
Gets the value of the variableRef property.-
Methods inherited from class fi.tut.mei.resdescapi.rdapi.model.rd.VariableSetCT
getVariableBoolean, getVariableNum, getVariableString
-
-
-
-
Field Detail
-
variableRef
protected List<VariableRefCT> variableRef
-
-
Method Detail
-
getVariableRef
public List<VariableRefCT> getVariableRef()
Gets the value of the variableRef 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 variableRef property.For example, to add a new item, do as follows:
getVariableRef().add(newItem);
Objects of the following type(s) are allowed in the list
VariableRefCT
-
-