Class CTFrameset

java.lang.Object
org.docx4j.wml.CTFrameset
All Implemented Interfaces:
Child

public class CTFrameset
extends java.lang.Object
implements Child

Java class for CT_Frameset complex type.

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

 <complexType name="CT_Frameset">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="sz" minOccurs="0">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <attribute name="val" type="{http://www.w3.org/2001/XMLSchema}string" />
               </restriction>
             </complexContent>
           </complexType>
         </element>
         <element name="framesetSplitbar" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_FramesetSplitbar" minOccurs="0"/>
         <element name="frameLayout" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_FrameLayout" minOccurs="0"/>
         <choice maxOccurs="unbounded" minOccurs="0">
           <element name="frameset" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_Frameset" maxOccurs="unbounded" minOccurs="0"/>
           <element name="frame" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_Frame" maxOccurs="unbounded" minOccurs="0"/>
         </choice>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
  • Nested Class Summary

    Nested Classes
    Modifier and Type Class Description
    static class  CTFrameset.Sz
    Java class for anonymous complex type.
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected CTFrameLayout frameLayout  
    protected java.util.List<java.lang.Object> framesetOrFrame  
    protected CTFramesetSplitbar framesetSplitbar  
    protected CTFrameset.Sz sz  
  • Constructor Summary

    Constructors
    Constructor Description
    CTFrameset()  
  • 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.
    CTFrameLayout getFrameLayout()
    Gets the value of the frameLayout property.
    java.util.List<java.lang.Object> getFramesetOrFrame()
    Gets the value of the framesetOrFrame property.
    CTFramesetSplitbar getFramesetSplitbar()
    Gets the value of the framesetSplitbar property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    CTFrameset.Sz getSz()
    Gets the value of the sz property.
    void setFrameLayout​(CTFrameLayout value)
    Sets the value of the frameLayout property.
    void setFramesetSplitbar​(CTFramesetSplitbar value)
    Sets the value of the framesetSplitbar property.
    void setParent​(java.lang.Object parent)  
    void setSz​(CTFrameset.Sz value)
    Sets the value of the sz property.

    Methods inherited from class java.lang.Object

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

    • sz

      protected CTFrameset.Sz sz
    • framesetSplitbar

      protected CTFramesetSplitbar framesetSplitbar
    • frameLayout

      protected CTFrameLayout frameLayout
    • framesetOrFrame

      protected java.util.List<java.lang.Object> framesetOrFrame
  • Constructor Details

    • CTFrameset

      public CTFrameset()
  • Method Details

    • getSz

      public CTFrameset.Sz getSz()
      Gets the value of the sz property.
      Returns:
      possible object is CTFrameset.Sz
    • setSz

      public void setSz​(CTFrameset.Sz value)
      Sets the value of the sz property.
      Parameters:
      value - allowed object is CTFrameset.Sz
    • getFramesetSplitbar

      public CTFramesetSplitbar getFramesetSplitbar()
      Gets the value of the framesetSplitbar property.
      Returns:
      possible object is CTFramesetSplitbar
    • setFramesetSplitbar

      public void setFramesetSplitbar​(CTFramesetSplitbar value)
      Sets the value of the framesetSplitbar property.
      Parameters:
      value - allowed object is CTFramesetSplitbar
    • getFrameLayout

      public CTFrameLayout getFrameLayout()
      Gets the value of the frameLayout property.
      Returns:
      possible object is CTFrameLayout
    • setFrameLayout

      public void setFrameLayout​(CTFrameLayout value)
      Sets the value of the frameLayout property.
      Parameters:
      value - allowed object is CTFrameLayout
    • getFramesetOrFrame

      public java.util.List<java.lang.Object> getFramesetOrFrame()
      Gets the value of the framesetOrFrame 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 framesetOrFrame property.

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

          getFramesetOrFrame().add(newItem);
       

      Objects of the following type(s) are allowed in the list CTFrameset CTFrame

    • 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.