Class DynamicForms
- java.lang.Object
-
- com.hybris.cockpitng.core.config.impl.jaxb.dynamicforms.DynamicForms
-
public class DynamicForms extends java.lang.ObjectJava class for anonymous complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="attribute" type="{http://www.hybris.com/cockpitng/component/dynamicForms}dynamicAttribute" maxOccurs="unbounded" minOccurs="0"/> <element name="section" type="{http://www.hybris.com/cockpitng/component/dynamicForms}dynamicSection" maxOccurs="unbounded" minOccurs="0"/> <element name="tab" type="{http://www.hybris.com/cockpitng/component/dynamicForms}dynamicTab" maxOccurs="unbounded" minOccurs="0"/> <element name="visitor" type="{http://www.hybris.com/cockpitng/component/dynamicForms}dynamicVisitor" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="modelProperty" type="{http://www.w3.org/2001/XMLSchema}string" default="currentObject" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<DynamicAttribute>attributeprotected java.lang.StringmodelPropertyprotected java.util.List<DynamicSection>sectionprotected java.util.List<DynamicTab>tabprotected java.util.List<DynamicVisitor>visitor
-
Constructor Summary
Constructors Constructor Description DynamicForms()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<DynamicAttribute>getAttribute()Gets the value of the attribute property.java.lang.StringgetModelProperty()Gets the value of the modelProperty property.java.util.List<DynamicSection>getSection()Gets the value of the section property.java.util.List<DynamicTab>getTab()Gets the value of the tab property.java.util.List<DynamicVisitor>getVisitor()Gets the value of the visitor property.voidsetModelProperty(java.lang.String value)Sets the value of the modelProperty property.
-
-
-
Field Detail
-
attribute
protected java.util.List<DynamicAttribute> attribute
-
section
protected java.util.List<DynamicSection> section
-
tab
protected java.util.List<DynamicTab> tab
-
visitor
protected java.util.List<DynamicVisitor> visitor
-
modelProperty
protected java.lang.String modelProperty
-
-
Method Detail
-
getAttribute
public java.util.List<DynamicAttribute> getAttribute()
Gets the value of the attribute 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 attribute property.For example, to add a new item, do as follows:
getAttribute().add(newItem);
Objects of the following type(s) are allowed in the list
DynamicAttribute
-
getSection
public java.util.List<DynamicSection> getSection()
Gets the value of the section 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 section property.For example, to add a new item, do as follows:
getSection().add(newItem);
Objects of the following type(s) are allowed in the list
DynamicSection
-
getTab
public java.util.List<DynamicTab> getTab()
Gets the value of the tab 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 tab property.For example, to add a new item, do as follows:
getTab().add(newItem);
Objects of the following type(s) are allowed in the list
DynamicTab
-
getVisitor
public java.util.List<DynamicVisitor> getVisitor()
Gets the value of the visitor 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 visitor property.For example, to add a new item, do as follows:
getVisitor().add(newItem);
Objects of the following type(s) are allowed in the list
DynamicVisitor
-
getModelProperty
public java.lang.String getModelProperty()
Gets the value of the modelProperty property.- Returns:
- possible object is
String
-
setModelProperty
public void setModelProperty(java.lang.String value)
Sets the value of the modelProperty property.- Parameters:
value- allowed object isString
-
-