Class CTFrameset

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

public class CTFrameset extends 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>
 
  • Field Details

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