Class Custom
- java.lang.Object
-
- de.hybris.platform.cockpit.services.config.jaxb.listview.ColumnConfiguration
-
- de.hybris.platform.cockpit.services.config.jaxb.listview.Custom
-
public class Custom extends ColumnConfiguration
Java class for custom complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="custom"> <complexContent> <extension base="{}columnConfiguration"> <sequence minOccurs="0"> <element name="label" type="{}label" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="class" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="spring-bean" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="selectable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> </extension> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Stringclazzprotected java.util.List<Label>labelprotected java.lang.Booleanselectableprotected java.lang.StringspringBean
-
Constructor Summary
Constructors Constructor Description Custom()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetClazz()Gets the value of the clazz property.java.util.List<Label>getLabel()Gets the value of the label property.java.lang.StringgetSpringBean()Gets the value of the springBean property.booleanisSelectable()Gets the value of the selectable property.voidsetClazz(java.lang.String value)Sets the value of the clazz property.voidsetSelectable(java.lang.Boolean value)Sets the value of the selectable property.voidsetSpringBean(java.lang.String value)Sets the value of the springBean property.-
Methods inherited from class de.hybris.platform.cockpit.services.config.jaxb.listview.ColumnConfiguration
getName, getPosition, getRenderer, getWidth, isEditable, isSortable, isVisible, setEditable, setName, setPosition, setRenderer, setSortable, setVisible, setWidth
-
-
-
-
Field Detail
-
label
protected java.util.List<Label> label
-
clazz
protected java.lang.String clazz
-
springBean
protected java.lang.String springBean
-
selectable
protected java.lang.Boolean selectable
-
-
Method Detail
-
getLabel
public java.util.List<Label> getLabel()
Gets the value of the label 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 label property.For example, to add a new item, do as follows:
getLabel().add(newItem);
Objects of the following type(s) are allowed in the list
Label
-
getClazz
public java.lang.String getClazz()
Gets the value of the clazz property.- Returns:
- possible object is
String
-
setClazz
public void setClazz(java.lang.String value)
Sets the value of the clazz property.- Parameters:
value- allowed object isString
-
getSpringBean
public java.lang.String getSpringBean()
Gets the value of the springBean property.- Returns:
- possible object is
String
-
setSpringBean
public void setSpringBean(java.lang.String value)
Sets the value of the springBean property.- Parameters:
value- allowed object isString
-
isSelectable
public boolean isSelectable()
Gets the value of the selectable property.- Returns:
- possible object is
Boolean
-
setSelectable
public void setSelectable(java.lang.Boolean value)
Sets the value of the selectable property.- Parameters:
value- allowed object isBoolean
-
-