Class CTChartsheetPr

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

public class CTChartsheetPr
extends java.lang.Object
implements Child

Java class for CT_ChartsheetPr complex type.

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

 <complexType name="CT_ChartsheetPr">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="tabColor" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_Color" minOccurs="0"/>
       </sequence>
       <attribute name="published" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="codeName" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected java.lang.String codeName  
    protected java.lang.Boolean published  
    protected CTColor tabColor  
  • Constructor Summary

    Constructors 
    Constructor Description
    CTChartsheetPr()  
  • Method Summary

    Modifier and Type Method Description
    void afterUnmarshal​(javax.xml.bind.Unmarshaller unmarshaller, java.lang.Object parent)
    This method is invoked by the JAXB implementation on each instance when unmarshalling completes.
    java.lang.String getCodeName()
    Gets the value of the codeName property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    CTColor getTabColor()
    Gets the value of the tabColor property.
    boolean isPublished()
    Gets the value of the published property.
    void setCodeName​(java.lang.String value)
    Sets the value of the codeName property.
    void setParent​(java.lang.Object parent)  
    void setPublished​(java.lang.Boolean value)
    Sets the value of the published property.
    void setTabColor​(CTColor value)
    Sets the value of the tabColor property.

    Methods inherited from class java.lang.Object

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

  • Constructor Details

  • Method Details

    • getTabColor

      public CTColor getTabColor()
      Gets the value of the tabColor property.
      Returns:
      possible object is CTColor
    • setTabColor

      public void setTabColor​(CTColor value)
      Sets the value of the tabColor property.
      Parameters:
      value - allowed object is CTColor
    • isPublished

      public boolean isPublished()
      Gets the value of the published property.
      Returns:
      possible object is Boolean
    • setPublished

      public void setPublished​(java.lang.Boolean value)
      Sets the value of the published property.
      Parameters:
      value - allowed object is Boolean
    • getCodeName

      public java.lang.String getCodeName()
      Gets the value of the codeName property.
      Returns:
      possible object is String
    • setCodeName

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