Class Editors
- java.lang.Object
-
- com.hybris.cockpitng.core.config.impl.jaxb.hybris.Editors
-
public class Editors extends java.lang.ObjectJava class for editors complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="editors"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence maxOccurs="unbounded"> <element name="group" type="{http://www.hybris.com/cockpit/config/hybris}editor-group"/> </sequence> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.util.List<EditorGroup>group
-
Constructor Summary
Constructors Constructor Description Editors()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.util.List<EditorGroup>getGroup()Gets the value of the group property.
-
-
-
Field Detail
-
group
protected java.util.List<EditorGroup> group
-
-
Method Detail
-
getGroup
public java.util.List<EditorGroup> getGroup()
Gets the value of the group 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 group property.For example, to add a new item, do as follows:
getGroup().add(newItem);
Objects of the following type(s) are allowed in the list
EditorGroup
-
-