Class CTMemberProperty

java.lang.Object
org.xlsx4j.sml.CTMemberProperty
All Implemented Interfaces:
Child

public class CTMemberProperty extends Object implements Child

Java class for CT_MemberProperty complex type.

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

 <complexType name="CT_MemberProperty">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="name" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_Xstring" />
       <attribute name="showCell" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="showTip" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="showAsCaption" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
       <attribute name="nameLen" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="pPos" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="pLen" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="level" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
       <attribute name="field" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • name

      protected String name
    • showCell

      protected Boolean showCell
    • showTip

      protected Boolean showTip
    • showAsCaption

      protected Boolean showAsCaption
    • nameLen

      protected Long nameLen
    • pPos

      protected Long pPos
    • pLen

      protected Long pLen
    • level

      protected Long level
    • field

      protected long field
  • Constructor Details

    • CTMemberProperty

      public CTMemberProperty()
  • Method Details

    • getName

      public String getName()
      Gets the value of the name property.
      Returns:
      possible object is String
    • setName

      public void setName(String value)
      Sets the value of the name property.
      Parameters:
      value - allowed object is String
    • isShowCell

      public boolean isShowCell()
      Gets the value of the showCell property.
      Returns:
      possible object is Boolean
    • setShowCell

      public void setShowCell(Boolean value)
      Sets the value of the showCell property.
      Parameters:
      value - allowed object is Boolean
    • isShowTip

      public boolean isShowTip()
      Gets the value of the showTip property.
      Returns:
      possible object is Boolean
    • setShowTip

      public void setShowTip(Boolean value)
      Sets the value of the showTip property.
      Parameters:
      value - allowed object is Boolean
    • isShowAsCaption

      public boolean isShowAsCaption()
      Gets the value of the showAsCaption property.
      Returns:
      possible object is Boolean
    • setShowAsCaption

      public void setShowAsCaption(Boolean value)
      Sets the value of the showAsCaption property.
      Parameters:
      value - allowed object is Boolean
    • getNameLen

      public Long getNameLen()
      Gets the value of the nameLen property.
      Returns:
      possible object is Long
    • setNameLen

      public void setNameLen(Long value)
      Sets the value of the nameLen property.
      Parameters:
      value - allowed object is Long
    • getPPos

      public Long getPPos()
      Gets the value of the pPos property.
      Returns:
      possible object is Long
    • setPPos

      public void setPPos(Long value)
      Sets the value of the pPos property.
      Parameters:
      value - allowed object is Long
    • getPLen

      public Long getPLen()
      Gets the value of the pLen property.
      Returns:
      possible object is Long
    • setPLen

      public void setPLen(Long value)
      Sets the value of the pLen property.
      Parameters:
      value - allowed object is Long
    • getLevel

      public Long getLevel()
      Gets the value of the level property.
      Returns:
      possible object is Long
    • setLevel

      public void setLevel(Long value)
      Sets the value of the level property.
      Parameters:
      value - allowed object is Long
    • getField

      public long getField()
      Gets the value of the field property.
    • setField

      public void setField(long value)
      Sets the value of the field property.
    • getParent

      public Object getParent()
      Gets the parent object in the object tree representing the unmarshalled xml document.
      Specified by:
      getParent in interface Child
      Returns:
      The parent object.
    • setParent

      public void setParent(Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, Object parent)
      This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
      Parameters:
      parent - The parent object in the object tree.
      unmarshaller - The unmarshaller that generated the instance.