Class ExplorerNode
- java.lang.Object
-
- com.hybris.cockpitng.core.config.impl.jaxb.hybris.commonconfig.Positioned
-
- com.hybris.cockpitng.config.explorertree.jaxb.ExplorerNode
-
- Direct Known Subclasses:
DynamicNode,NavigationNode,TypeNode
public abstract class ExplorerNode extends Positioned
Java class for explorer-node complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="explorer-node"> <complexContent> <extension base="{http://www.hybris.com/cockpitng/config/common}positioned"> <sequence> <choice maxOccurs="unbounded" minOccurs="0"> <element name="navigation-node" type="{http://www.hybris.com/cockpitng/config/explorertree}navigation-node"/> <element name="type-node" type="{http://www.hybris.com/cockpitng/config/explorertree}type-node"/> <element name="dynamic-node" type="{http://www.hybris.com/cockpitng/config/explorertree}dynamic-node"/> </choice> </sequence> <attribute name="id" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="expanded-by-default" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> <attribute name="merge-mode" type="{http://www.w3.org/2001/XMLSchema}string" /> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.BooleanexpandedByDefaultprotected java.lang.Stringidprotected java.lang.StringmergeModeprotected java.util.List<ExplorerNode>navigationNodeOrTypeNodeOrDynamicNode-
Fields inherited from class com.hybris.cockpitng.core.config.impl.jaxb.hybris.commonconfig.Positioned
position
-
-
Constructor Summary
Constructors Constructor Description ExplorerNode()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description booleangetExpandedByDefault()Gets the value of the expandedByDefault property.java.lang.StringgetId()Gets the value of the id property.java.lang.StringgetMergeMode()Gets the value of the mergeMode property.java.util.List<ExplorerNode>getNavigationNodeOrTypeNodeOrDynamicNode()Gets the value of the navigationNodeOrTypeNodeOrDynamicNode property.voidsetExpandedByDefault(java.lang.Boolean value)Sets the value of the expandedByDefault property.voidsetId(java.lang.String value)Sets the value of the id property.voidsetMergeMode(java.lang.String value)Sets the value of the mergeMode property.-
Methods inherited from class com.hybris.cockpitng.core.config.impl.jaxb.hybris.commonconfig.Positioned
getPosition, setPosition
-
-
-
-
Field Detail
-
navigationNodeOrTypeNodeOrDynamicNode
protected java.util.List<ExplorerNode> navigationNodeOrTypeNodeOrDynamicNode
-
id
protected java.lang.String id
-
expandedByDefault
protected java.lang.Boolean expandedByDefault
-
mergeMode
protected java.lang.String mergeMode
-
-
Method Detail
-
getNavigationNodeOrTypeNodeOrDynamicNode
public java.util.List<ExplorerNode> getNavigationNodeOrTypeNodeOrDynamicNode()
Gets the value of the navigationNodeOrTypeNodeOrDynamicNode 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 navigationNodeOrTypeNodeOrDynamicNode property.For example, to add a new item, do as follows:
getNavigationNodeOrTypeNodeOrDynamicNode().add(newItem);Objects of the following type(s) are allowed in the list
NavigationNodeTypeNodeDynamicNode
-
getId
public java.lang.String getId()
Gets the value of the id property.- Returns:
- possible object is
String
-
setId
public void setId(java.lang.String value)
Sets the value of the id property.- Parameters:
value- allowed object isString
-
getExpandedByDefault
public boolean getExpandedByDefault()
Gets the value of the expandedByDefault property.- Returns:
- possible object is
Boolean
-
setExpandedByDefault
public void setExpandedByDefault(java.lang.Boolean value)
Sets the value of the expandedByDefault property.- Parameters:
value- allowed object isBoolean
-
getMergeMode
public java.lang.String getMergeMode()
Gets the value of the mergeMode property.- Returns:
- possible object is
String
-
setMergeMode
public void setMergeMode(java.lang.String value)
Sets the value of the mergeMode property.- Parameters:
value- allowed object isString
-
-