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