Class EditorProperty
- java.lang.Object
-
- com.hybris.cockpitng.core.config.impl.jaxb.hybris.EditorProperty
-
public class EditorProperty extends java.lang.ObjectJava class for editor-property complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="editor-property"> <complexContent> <restriction base="{http://www.w3.org/2001/XMLSchema}anyType"> <sequence> <element name="label" type="{http://www.w3.org/2001/XMLSchema}string" minOccurs="0"/> <element name="parameter" type="{http://www.hybris.com/cockpit/config/hybris}parameter" maxOccurs="unbounded" minOccurs="0"/> </sequence> <attribute name="qualifier" use="required" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="readOnly" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" /> <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="editor" type="{http://www.w3.org/2001/XMLSchema}string" /> <attribute name="merge-mode" type="{http://www.w3.org/2001/XMLSchema}string" /> </restriction> </complexContent> </complexType>
-
-
Field Summary
Fields Modifier and Type Field Description protected java.lang.Stringeditorprotected java.lang.Stringlabelprotected java.lang.StringmergeModeprotected java.util.List<Parameter>parameterprotected java.lang.Stringqualifierprotected java.lang.BooleanreadOnlyprotected java.lang.Stringtype
-
Constructor Summary
Constructors Constructor Description EditorProperty()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetEditor()Gets the value of the editor property.java.lang.StringgetLabel()Gets the value of the label property.java.lang.StringgetMergeMode()Gets the value of the mergeMode property.java.util.List<Parameter>getParameter()Gets the value of the parameter property.java.lang.StringgetQualifier()Gets the value of the qualifier property.java.lang.StringgetType()Gets the value of the type property.java.lang.BooleanisReadOnly()Gets the value of the readOnly property.voidsetEditor(java.lang.String value)Sets the value of the editor property.voidsetLabel(java.lang.String value)Sets the value of the label property.voidsetMergeMode(java.lang.String value)Sets the value of the mergeMode property.voidsetQualifier(java.lang.String value)Sets the value of the qualifier property.voidsetReadOnly(java.lang.Boolean value)Sets the value of the readOnly property.voidsetType(java.lang.String value)Sets the value of the type property.
-
-
-
Field Detail
-
label
protected java.lang.String label
-
parameter
protected java.util.List<Parameter> parameter
-
qualifier
protected java.lang.String qualifier
-
readOnly
protected java.lang.Boolean readOnly
-
type
protected java.lang.String type
-
editor
protected java.lang.String editor
-
mergeMode
protected java.lang.String mergeMode
-
-
Method Detail
-
getLabel
public java.lang.String getLabel()
Gets the value of the label property.- Returns:
- possible object is
String
-
setLabel
public void setLabel(java.lang.String value)
Sets the value of the label property.- Parameters:
value- allowed object isString
-
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
-
isReadOnly
public java.lang.Boolean isReadOnly()
Gets the value of the readOnly property.- Returns:
- possible object is
Boolean
-
setReadOnly
public void setReadOnly(java.lang.Boolean value)
Sets the value of the readOnly property.- Parameters:
value- allowed object isBoolean
-
getType
public java.lang.String getType()
Gets the value of the type property.- Returns:
- possible object is
String
-
setType
public void setType(java.lang.String value)
Sets the value of the type property.- Parameters:
value- allowed object isString
-
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
-
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
-
-