Class PropertyType


  • public class PropertyType
    extends java.lang.Object

    Java class for PropertyType complex type.

    The following schema fragment specifies the expected content contained within this class.

     <complexType name="PropertyType">
       <complexContent>
         <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
           <sequence>
             <element name="editor-parameter" type="{http://www.hybris.com/cockpitng/config/wizard-config}parameter" maxOccurs="unbounded" minOccurs="0"/>
           </sequence>
           <attribute name="qualifier" use="required" type="{http://www.w3.org/2001/XMLSchema}string" />
           <attribute name="description" type="{http://www.w3.org/2001/XMLSchema}string" />
           <attribute name="type" type="{http://www.w3.org/2001/XMLSchema}string" />
           <attribute name="validate" type="{http://www.w3.org/2001/XMLSchema}boolean" />
           <attribute name="readonly" type="{http://www.w3.org/2001/XMLSchema}boolean" />
           <attribute name="id" type="{http://www.w3.org/2001/XMLSchema}string" />
           <attribute name="merge-mode" type="{http://www.w3.org/2001/XMLSchema}string" />
           <attribute name="editor" type="{http://www.w3.org/2001/XMLSchema}string" />
           <attribute name="position" type="{http://www.w3.org/2001/XMLSchema}integer" />
           <attribute name="exclude" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
         </restriction>
       </complexContent>
     </complexType>
     
    • Field Summary

      Fields 
      Modifier and Type Field Description
      protected java.lang.String description  
      protected java.lang.String editor  
      protected java.util.List<Parameter> editorParameter  
      protected java.lang.Boolean exclude  
      protected java.lang.String generatedId  
      protected java.lang.String id  
      protected java.lang.String label  
      protected java.lang.String mergeMode  
      protected java.math.BigInteger position  
      protected java.lang.String qualifier  
      protected java.lang.Boolean readonly  
      protected java.lang.String type  
      protected java.lang.Boolean validate  
    • Constructor Summary

      Constructors 
      Constructor Description
      PropertyType()  
    • Method Summary

      All Methods Instance Methods Concrete Methods 
      Modifier and Type Method Description
      void afterUnmarshal​(javax.xml.bind.Unmarshaller u, java.lang.Object parent)  
      java.lang.String getDescription()
      Gets the value of the description property.
      java.lang.String getEditor()
      Gets the value of the editor property.
      java.util.List<Parameter> getEditorParameter()
      Gets the value of the editorParameter property.
      java.lang.String getGeneratedId()  
      java.lang.String getId()
      Gets the value of the id property.
      java.lang.String getLabel()
      Gets the value of the label property.
      java.lang.String getMergeMode()
      Gets the value of the mergeMode property.
      java.math.BigInteger getPosition()
      Gets the value of the position property.
      java.lang.String getQualifier()
      Gets the value of the qualifier property.
      java.lang.String getType()
      Gets the value of the type property.
      boolean isExclude()
      Gets the value of the exclude property.
      java.lang.Boolean isReadonly()
      Gets the value of the readonly property.
      java.lang.Boolean isValidate()
      Gets the value of the validate property.
      void setDescription​(java.lang.String value)
      Sets the value of the description property.
      void setEditor​(java.lang.String value)
      Sets the value of the editor property.
      void setExclude​(java.lang.Boolean value)
      Sets the value of the exclude property.
      void setId​(java.lang.String value)
      Sets the value of the id property.
      void setLabel​(java.lang.String value)
      Sets the value of the label property.
      void setMergeMode​(java.lang.String value)
      Sets the value of the mergeMode property.
      void setPosition​(java.math.BigInteger value)
      Sets the value of the position property.
      void setQualifier​(java.lang.String value)
      Sets the value of the qualifier property.
      void setReadonly​(java.lang.Boolean value)
      Sets the value of the readonly property.
      void setType​(java.lang.String value)
      Sets the value of the type property.
      void setValidate​(java.lang.Boolean value)
      Sets the value of the validate property.
      • Methods inherited from class java.lang.Object

        clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
    • Field Detail

      • editorParameter

        protected java.util.List<Parameter> editorParameter
      • qualifier

        protected java.lang.String qualifier
      • description

        protected java.lang.String description
      • label

        protected java.lang.String label
      • type

        protected java.lang.String type
      • validate

        protected java.lang.Boolean validate
      • readonly

        protected java.lang.Boolean readonly
      • id

        protected java.lang.String id
      • mergeMode

        protected java.lang.String mergeMode
      • editor

        protected java.lang.String editor
      • position

        protected java.math.BigInteger position
      • exclude

        protected java.lang.Boolean exclude
      • generatedId

        protected java.lang.String generatedId
    • Constructor Detail

      • PropertyType

        public PropertyType()
    • Method Detail

      • getEditorParameter

        public java.util.List<Parameter> getEditorParameter()
        Gets the value of the editorParameter 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 set method for the editorParameter property.

        For example, to add a new item, do as follows:

            getEditorParameter().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 is String
      • 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 is String
      • getDescription

        public java.lang.String getDescription()
        Gets the value of the description property.
        Returns:
        possible object is String
      • setDescription

        public void setDescription​(java.lang.String value)
        Sets the value of the description property.
        Parameters:
        value - allowed object is String
      • 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 is String
      • isValidate

        public java.lang.Boolean isValidate()
        Gets the value of the validate property.
        Returns:
        possible object is Boolean
      • setValidate

        public void setValidate​(java.lang.Boolean value)
        Sets the value of the validate property.
        Parameters:
        value - allowed object is Boolean
      • 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 is Boolean
      • 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 is String
      • 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 is String
      • 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 is String
      • getGeneratedId

        public java.lang.String getGeneratedId()
      • afterUnmarshal

        public void afterUnmarshal​(javax.xml.bind.Unmarshaller u,
                                   java.lang.Object parent)
      • getPosition

        public java.math.BigInteger getPosition()
        Gets the value of the position property.
        Returns:
        possible object is BigInteger
      • setPosition

        public void setPosition​(java.math.BigInteger value)
        Sets the value of the position property.
        Parameters:
        value - allowed object is BigInteger
      • isExclude

        public boolean isExclude()
        Gets the value of the exclude property.
        Returns:
        possible object is Boolean
      • setExclude

        public void setExclude​(java.lang.Boolean value)
        Sets the value of the exclude property.
        Parameters:
        value - allowed object is Boolean