Class ValueStructCT
- java.lang.Object
-
- fi.tut.mei.resdescapi.rdapi.model.rd.ValueStructCT
-
public class ValueStructCT extends Object
Struct data type (IEC61131)Java class for ValueStruct_CT complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="ValueStruct_CT"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="Member" maxOccurs="unbounded"> <complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <group ref="{https://resourcedescription.rd.tuni.fi/XMLSchema/2016}g_Value"/> </sequence> <attribute name="name" use="required" type="{http://www.w3.org/2001/XMLSchema}token" /> <attribute name="datatype" use="required" type="{https://resourcedescription.rd.tuni.fi/XMLSchema/2016}DataTypeRef_ST" /> </restriction> </complexContent> </complexType> </element> </sequence> </restriction> </complexContent> </complexType>
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
ValueStructCT.Member
Java class for anonymous complex type.
-
Field Summary
Fields Modifier and Type Field Description protected List<ValueStructCT.Member>
member
-
Constructor Summary
Constructors Constructor Description ValueStructCT()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<ValueStructCT.Member>
getMember()
Gets the value of the member property.
-
-
-
Field Detail
-
member
protected List<ValueStructCT.Member> member
-
-
Method Detail
-
getMember
public List<ValueStructCT.Member> getMember()
Gets the value of the member 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 member property.For example, to add a new item, do as follows:
getMember().add(newItem);
Objects of the following type(s) are allowed in the list
ValueStructCT.Member
-
-