Class CTTableStyleElement

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

public class CTTableStyleElement
extends java.lang.Object
implements Child

Java class for CT_TableStyleElement complex type.

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

 <complexType name="CT_TableStyleElement">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="type" use="required" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_TableStyleType" />
       <attribute name="size" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" default="1" />
       <attribute name="dxfId" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_DxfId" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected java.lang.Long dxfId  
    protected java.lang.Long size  
    protected STTableStyleType type  
  • Constructor Summary

    Constructors
    Constructor Description
    CTTableStyleElement()  
  • Method Summary

    Modifier and Type Method Description
    void afterUnmarshal​(jakarta.xml.bind.Unmarshaller unmarshaller, java.lang.Object parent)
    This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
    java.lang.Long getDxfId()
    Gets the value of the dxfId property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    long getSize()
    Gets the value of the size property.
    STTableStyleType getType()
    Gets the value of the type property.
    void setDxfId​(java.lang.Long value)
    Sets the value of the dxfId property.
    void setParent​(java.lang.Object parent)  
    void setSize​(java.lang.Long value)
    Sets the value of the size property.
    void setType​(STTableStyleType value)
    Sets the value of the type property.

    Methods inherited from class java.lang.Object

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

    • type

      protected STTableStyleType type
    • size

      protected java.lang.Long size
    • dxfId

      protected java.lang.Long dxfId
  • Constructor Details

    • CTTableStyleElement

      public CTTableStyleElement()
  • Method Details

    • getType

      public STTableStyleType getType()
      Gets the value of the type property.
      Returns:
      possible object is STTableStyleType
    • setType

      public void setType​(STTableStyleType value)
      Sets the value of the type property.
      Parameters:
      value - allowed object is STTableStyleType
    • getSize

      public long getSize()
      Gets the value of the size property.
      Returns:
      possible object is Long
    • setSize

      public void setSize​(java.lang.Long value)
      Sets the value of the size property.
      Parameters:
      value - allowed object is Long
    • getDxfId

      public java.lang.Long getDxfId()
      Gets the value of the dxfId property.
      Returns:
      possible object is Long
    • setDxfId

      public void setDxfId​(java.lang.Long value)
      Sets the value of the dxfId property.
      Parameters:
      value - allowed object is Long
    • getParent

      public java.lang.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​(java.lang.Object parent)
      Specified by:
      setParent in interface Child
    • afterUnmarshal

      public void afterUnmarshal​(jakarta.xml.bind.Unmarshaller unmarshaller, java.lang.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.