Class CTHeaderFooter

java.lang.Object
org.pptx4j.pml.CTHeaderFooter
All Implemented Interfaces:
Child

public class CTHeaderFooter
extends java.lang.Object
implements Child

Java class for CT_HeaderFooter complex type.

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

 <complexType name="CT_HeaderFooter">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="extLst" type="{http://schemas.openxmlformats.org/presentationml/2006/main}CT_ExtensionListModify" minOccurs="0"/>
       </sequence>
       <attribute name="sldNum" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="hdr" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="ftr" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="dt" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields 
    Modifier and Type Field Description
    protected java.lang.Boolean dt  
    protected CTExtensionListModify extLst  
    protected java.lang.Boolean ftr  
    protected java.lang.Boolean hdr  
    protected java.lang.Boolean sldNum  
  • Constructor Summary

    Constructors 
    Constructor Description
    CTHeaderFooter()  
  • 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.
    CTExtensionListModify getExtLst()
    Gets the value of the extLst property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    boolean isDt()
    Gets the value of the dt property.
    boolean isFtr()
    Gets the value of the ftr property.
    boolean isHdr()
    Gets the value of the hdr property.
    boolean isSldNum()
    Gets the value of the sldNum property.
    void setDt​(java.lang.Boolean value)
    Sets the value of the dt property.
    void setExtLst​(CTExtensionListModify value)
    Sets the value of the extLst property.
    void setFtr​(java.lang.Boolean value)
    Sets the value of the ftr property.
    void setHdr​(java.lang.Boolean value)
    Sets the value of the hdr property.
    void setParent​(java.lang.Object parent)  
    void setSldNum​(java.lang.Boolean value)
    Sets the value of the sldNum property.

    Methods inherited from class java.lang.Object

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

    • extLst

      protected CTExtensionListModify extLst
    • sldNum

      protected java.lang.Boolean sldNum
    • hdr

      protected java.lang.Boolean hdr
    • ftr

      protected java.lang.Boolean ftr
    • dt

      protected java.lang.Boolean dt
  • Constructor Details

  • Method Details

    • getExtLst

      public CTExtensionListModify getExtLst()
      Gets the value of the extLst property.
      Returns:
      possible object is CTExtensionListModify
    • setExtLst

      public void setExtLst​(CTExtensionListModify value)
      Sets the value of the extLst property.
      Parameters:
      value - allowed object is CTExtensionListModify
    • isSldNum

      public boolean isSldNum()
      Gets the value of the sldNum property.
      Returns:
      possible object is Boolean
    • setSldNum

      public void setSldNum​(java.lang.Boolean value)
      Sets the value of the sldNum property.
      Parameters:
      value - allowed object is Boolean
    • isHdr

      public boolean isHdr()
      Gets the value of the hdr property.
      Returns:
      possible object is Boolean
    • setHdr

      public void setHdr​(java.lang.Boolean value)
      Sets the value of the hdr property.
      Parameters:
      value - allowed object is Boolean
    • isFtr

      public boolean isFtr()
      Gets the value of the ftr property.
      Returns:
      possible object is Boolean
    • setFtr

      public void setFtr​(java.lang.Boolean value)
      Sets the value of the ftr property.
      Parameters:
      value - allowed object is Boolean
    • isDt

      public boolean isDt()
      Gets the value of the dt property.
      Returns:
      possible object is Boolean
    • setDt

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