Class Section
- java.lang.Object
-
- com.hybris.cockpitng.core.config.impl.jaxb.hybris.commonconfig.Positioned
-
- com.hybris.cockpitng.core.config.impl.jaxb.editorarea.AbstractPositioned
-
- com.hybris.cockpitng.core.config.impl.jaxb.editorarea.AbstractSection
-
- com.hybris.cockpitng.core.config.impl.jaxb.editorarea.Section
-
- Direct Known Subclasses:
CustomSection,EssentialSection
public class Section extends AbstractSection
Java class for section complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="section"> <complexContent> <extension base="{http://www.hybris.com/cockpitng/component/editorArea}abstractSection"> <sequence> <choice maxOccurs="unbounded" minOccurs="0"> <element name="customPanel" type="{http://www.hybris.com/cockpitng/component/editorArea}customPanel"/> <element name="panel" type="{http://www.hybris.com/cockpitng/component/editorArea}panel"/> </choice> <choice maxOccurs="unbounded" minOccurs="0"> <element name="attribute" type="{http://www.hybris.com/cockpitng/component/editorArea}attribute" maxOccurs="unbounded" minOccurs="0"/> <element name="custom" type="{http://www.hybris.com/cockpitng/component/editorArea}customElement" maxOccurs="unbounded" minOccurs="0"/> </choice> </sequence> <attribute name="columns" type="{http://www.w3.org/2001/XMLSchema}decimal" default="2" /> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<AbstractPositioned>attributeOrCustomprotected java.math.BigDecimalcolumnsprotected java.util.List<Panel>customPanelOrPanel-
Fields inherited from class com.hybris.cockpitng.core.config.impl.jaxb.editorarea.AbstractSection
description, initiallyOpened, mergeMode, name
-
Fields inherited from class com.hybris.cockpitng.core.config.impl.jaxb.hybris.commonconfig.Positioned
position
-
-
Constructor Summary
Constructors Constructor Description Section()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<AbstractPositioned>getAttributeOrCustom()Gets the value of the attributeOrCustom property.java.math.BigDecimalgetColumns()Gets the value of the columns property.java.util.List<Panel>getCustomPanelOrPanel()Gets the value of the customPanelOrPanel property.voidsetColumns(java.math.BigDecimal value)Sets the value of the columns property.-
Methods inherited from class com.hybris.cockpitng.core.config.impl.jaxb.editorarea.AbstractSection
getDescription, getMergeMode, getName, isInitiallyOpened, setDescription, setInitiallyOpened, setMergeMode, setName
-
Methods inherited from class com.hybris.cockpitng.core.config.impl.jaxb.hybris.commonconfig.Positioned
getPosition, setPosition
-
-
-
-
Field Detail
-
customPanelOrPanel
protected java.util.List<Panel> customPanelOrPanel
-
attributeOrCustom
protected java.util.List<AbstractPositioned> attributeOrCustom
-
columns
protected java.math.BigDecimal columns
-
-
Method Detail
-
getCustomPanelOrPanel
public java.util.List<Panel> getCustomPanelOrPanel()
Gets the value of the customPanelOrPanel 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 customPanelOrPanel property.For example, to add a new item, do as follows:
getCustomPanelOrPanel().add(newItem);Objects of the following type(s) are allowed in the list
CustomPanelPanel
-
getAttributeOrCustom
public java.util.List<AbstractPositioned> getAttributeOrCustom()
Gets the value of the attributeOrCustom 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 attributeOrCustom property.For example, to add a new item, do as follows:
getAttributeOrCustom().add(newItem);Objects of the following type(s) are allowed in the list
AttributeCustomElement
-
getColumns
public java.math.BigDecimal getColumns()
Gets the value of the columns property.- Returns:
- possible object is
BigDecimal
-
setColumns
public void setColumns(java.math.BigDecimal value)
Sets the value of the columns property.- Parameters:
value- allowed object isBigDecimal
-
-