Class Panel
- 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.AbstractPanel
-
- com.hybris.cockpitng.core.config.impl.jaxb.editorarea.Panel
-
- Direct Known Subclasses:
CustomPanel
public class Panel extends AbstractPanel
Java class for panel complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="panel"> <complexContent> <extension base="{http://www.hybris.com/cockpitng/component/editorArea}abstractPanel"> <sequence maxOccurs="unbounded" minOccurs="0"> <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> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<AbstractPositioned>attributeOrCustom-
Fields inherited from class com.hybris.cockpitng.core.config.impl.jaxb.editorarea.AbstractPanel
colspan, description, mergeMode, name, rowspan
-
Fields inherited from class com.hybris.cockpitng.core.config.impl.jaxb.hybris.commonconfig.Positioned
position
-
-
Constructor Summary
Constructors Constructor Description Panel()
-
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.-
Methods inherited from class com.hybris.cockpitng.core.config.impl.jaxb.editorarea.AbstractPanel
getColspan, getDescription, getMergeMode, getName, getRowspan, setColspan, setDescription, setMergeMode, setName, setRowspan
-
Methods inherited from class com.hybris.cockpitng.core.config.impl.jaxb.hybris.commonconfig.Positioned
getPosition, setPosition
-
-
-
-
Field Detail
-
attributeOrCustom
protected java.util.List<AbstractPositioned> attributeOrCustom
-
-
Method Detail
-
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
-
-