Class Tab
- 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.AbstractTab
-
- com.hybris.cockpitng.core.config.impl.jaxb.editorarea.Tab
-
- Direct Known Subclasses:
CustomTab,EditorAreaConfigWithOverviewTab.TabWithoutEssentials
public class Tab extends AbstractTab
Java class for tab complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="tab"> <complexContent> <extension base="{http://www.hybris.com/cockpitng/component/editorArea}abstractTab"> <choice maxOccurs="unbounded" minOccurs="0"> <element name="customSection" type="{http://www.hybris.com/cockpitng/component/editorArea}customSection"/> <element name="section" type="{http://www.hybris.com/cockpitng/component/editorArea}section"/> </choice> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<AbstractSection>customSectionOrSection-
Fields inherited from class com.hybris.cockpitng.core.config.impl.jaxb.editorarea.AbstractTab
displayEssentialSectionIfPresent, essentials, mergeMode, name, tooltipText
-
Fields inherited from class com.hybris.cockpitng.core.config.impl.jaxb.hybris.commonconfig.Positioned
position
-
-
Constructor Summary
Constructors Constructor Description Tab()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<AbstractSection>getCustomSectionOrSection()Gets the value of the customSectionOrSection property.-
Methods inherited from class com.hybris.cockpitng.core.config.impl.jaxb.editorarea.AbstractTab
getEssentials, getMergeMode, getName, getTooltipText, isDisplayEssentialSectionIfPresent, setDisplayEssentialSectionIfPresent, setEssentials, setMergeMode, setName, setTooltipText
-
Methods inherited from class com.hybris.cockpitng.core.config.impl.jaxb.hybris.commonconfig.Positioned
getPosition, setPosition
-
-
-
-
Field Detail
-
customSectionOrSection
protected java.util.List<AbstractSection> customSectionOrSection
-
-
Method Detail
-
getCustomSectionOrSection
public java.util.List<AbstractSection> getCustomSectionOrSection()
Gets the value of the customSectionOrSection 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 customSectionOrSection property.For example, to add a new item, do as follows:
getCustomSectionOrSection().add(newItem);Objects of the following type(s) are allowed in the list
CustomSectionSection
-
-