Class Group
- Direct Known Subclasses:
RootGroup
Java class for group complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="group">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="label" type="{}label" maxOccurs="unbounded" minOccurs="0"/>
<element name="property" type="{}property" maxOccurs="unbounded" minOccurs="0"/>
<element name="group" type="{}group" maxOccurs="unbounded" minOccurs="0"/>
</sequence>
<attribute name="name" type="{http://www.w3.org/2001/XMLSchema}string" />
<attribute name="visible" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
</restriction>
</complexContent>
</complexType>
-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptiongetGroup()Gets the value of the group property.getLabel()Gets the value of the label property.getName()Gets the value of the name property.Gets the value of the property property.booleanGets the value of the visible property.voidSets the value of the name property.voidsetVisible(Boolean value) Sets the value of the visible property.
-
Field Details
-
label
-
property
-
group
-
name
-
visible
-
-
Constructor Details
-
Group
public Group()
-
-
Method Details
-
getLabel
Gets the value of the label 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 label property.For example, to add a new item, do as follows:
getLabel().add(newItem);
Objects of the following type(s) are allowed in the list
Label -
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
setmethod 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
Property -
getGroup
Gets the value of the group 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 group property.For example, to add a new item, do as follows:
getGroup().add(newItem);
Objects of the following type(s) are allowed in the list
Group -
getName
Gets the value of the name property.- Returns:
- possible object is
String
-
setName
Sets the value of the name property.- Parameters:
value- allowed object isString
-
isVisible
public boolean isVisible()Gets the value of the visible property.- Returns:
- possible object is
Boolean
-
setVisible
Sets the value of the visible property.- Parameters:
value- allowed object isBoolean
-