Class CapabilityParameterSetCT
- java.lang.Object
-
- fi.tut.mei.resdescapi.rdapi.model.rd.CapabilityParameterSetCT
-
- Direct Known Subclasses:
InputOutputParamSetCapabilityCT.Characteristics
public class CapabilityParameterSetCT extends Object
Parameter options for specific type of Capability parametersJava class for CapabilityParameterSet_CT complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CapabilityParameterSet_CT"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Property" type="{https://resourcedescription.rd.tuni.fi/XMLSchema/2016}Property_CT" maxOccurs="unbounded" minOccurs="0"/> <group ref="{https://resourcedescription.rd.tuni.fi/XMLSchema/2016}g_VariableAndRef" minOccurs="0"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<VariableCTWComplex>
gVariable
protected List<PropertyCT>
property
protected List<VariableRefCT>
variableRef
-
Constructor Summary
Constructors Constructor Description CapabilityParameterSetCT()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<VariableCTWComplex>
getGVariable()
Gets the value of the gVariable property.List<PropertyCT>
getProperty()
Gets the value of the property property.List<VariableRefCT>
getVariableRef()
Gets the value of the variableRef property.
-
-
-
Field Detail
-
property
protected List<PropertyCT> property
-
gVariable
protected List<VariableCTWComplex> gVariable
-
variableRef
protected List<VariableRefCT> variableRef
-
-
Method Detail
-
getProperty
public List<PropertyCT> getProperty()
Gets the value of the property 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 property property.For example, to add a new item, do as follows:
getProperty().add(newItem);
Objects of the following type(s) are allowed in the list
PropertyCT
-
getGVariable
public List<VariableCTWComplex> getGVariable()
Gets the value of the gVariable 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 gVariable property.For example, to add a new item, do as follows:
getGVariable().add(newItem);
Objects of the following type(s) are allowed in the list
VariableBooleanCT
VariableNumCT
VariableStringCT
-
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
-
-