Class Property
- java.lang.Object
-
- de.hybris.platform.cockpit.services.config.jaxb.listview.ColumnConfiguration
-
- de.hybris.platform.cockpit.services.config.jaxb.listview.Property
-
public class Property extends ColumnConfiguration
Java class for property complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="property"> <complexContent> <extension base="{}columnConfiguration"> <sequence minOccurs="0"> <element name="language" type="{}language" maxOccurs="unbounded" minOccurs="0"/> <element name="parameter" type="{}parameter" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="qualifier" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="selectable" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" /> <attribute name="editor" type="{http://www.w3.org/2001/XMLSchema}string" /> </extension> </complexContent> </complexType>
-
-
Constructor Summary
Constructors Constructor Description Property()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetEditor()Gets the value of the editor property.java.util.List<Language>getLanguage()Gets the value of the language property.java.util.List<Parameter>getParameter()Gets the value of the parameter property.java.lang.StringgetQualifier()Gets the value of the qualifier property.booleanisSelectable()Gets the value of the selectable property.voidsetEditor(java.lang.String value)Sets the value of the editor property.voidsetQualifier(java.lang.String value)Sets the value of the qualifier property.voidsetSelectable(java.lang.Boolean value)Sets the value of the selectable 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
-
-
-
-
Method Detail
-
getLanguage
public java.util.List<Language> getLanguage()
Gets the value of the language 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 language property.For example, to add a new item, do as follows:
getLanguage().add(newItem);
Objects of the following type(s) are allowed in the list
Language
-
getParameter
public java.util.List<Parameter> getParameter()
Gets the value of the parameter 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 parameter property.For example, to add a new item, do as follows:
getParameter().add(newItem);
Objects of the following type(s) are allowed in the list
Parameter
-
getQualifier
public java.lang.String getQualifier()
Gets the value of the qualifier property.- Returns:
- possible object is
String
-
setQualifier
public void setQualifier(java.lang.String value)
Sets the value of the qualifier 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
-
getEditor
public java.lang.String getEditor()
Gets the value of the editor property.- Returns:
- possible object is
String
-
setEditor
public void setEditor(java.lang.String value)
Sets the value of the editor property.- Parameters:
value- allowed object isString
-
-