Class Struct
- java.lang.Object
-
- org.apache.cxf.binding.corba.wsdl.CorbaTypeImpl
-
- org.apache.cxf.binding.corba.wsdl.CorbaType
-
- org.apache.cxf.binding.corba.wsdl.NamedType
-
- org.apache.cxf.binding.corba.wsdl.Struct
-
public class Struct extends NamedType
Java class for struct complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="struct"> <complexContent> <extension base="{http://cxf.apache.org/bindings/corba}namedType"> <sequence> <element name="member" type="{http://cxf.apache.org/bindings/corba}memberType" maxOccurs="unbounded" minOccurs="0"/> </sequence> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected List<MemberType>member-
Fields inherited from class org.apache.cxf.binding.corba.wsdl.NamedType
repositoryID
-
Fields inherited from class org.apache.cxf.binding.corba.wsdl.CorbaTypeImpl
qname
-
-
Constructor Summary
Constructors Constructor Description Struct()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description List<MemberType>getMember()Gets the value of the member property.booleanisSetMember()voidunsetMember()-
Methods inherited from class org.apache.cxf.binding.corba.wsdl.NamedType
getRepositoryID, isSetRepositoryID, setRepositoryID
-
Methods inherited from class org.apache.cxf.binding.corba.wsdl.CorbaType
getName, getType, isQualified, isSetName, isSetQualified, isSetType, setName, setQualified, setType, unsetQualified
-
Methods inherited from class org.apache.cxf.binding.corba.wsdl.CorbaTypeImpl
getQName, isSetQName, setQName
-
-
-
-
Field Detail
-
member
protected List<MemberType> member
-
-
Method Detail
-
getMember
public List<MemberType> 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
setmethod 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
MemberType
-
isSetMember
public boolean isSetMember()
-
unsetMember
public void unsetMember()
-
-