Package org.docx4j.wml
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 classCTFrameset.SzJava class for anonymous complex type. -
Field Summary
Fields Modifier and Type Field Description protected CTFrameLayoutframeLayoutprotected java.util.List<java.lang.Object>framesetOrFrameprotected CTFramesetSplitbarframesetSplitbarprotected CTFrameset.Szsz -
Constructor Summary
Constructors Constructor Description CTFrameset() -
Method Summary
Modifier and Type Method Description voidafterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, java.lang.Object parent)This method is invoked by the JAXB implementation on each instance when unmarshalling completes.CTFrameLayoutgetFrameLayout()Gets the value of the frameLayout property.java.util.List<java.lang.Object>getFramesetOrFrame()Gets the value of the framesetOrFrame property.CTFramesetSplitbargetFramesetSplitbar()Gets the value of the framesetSplitbar property.java.lang.ObjectgetParent()Gets the parent object in the object tree representing the unmarshalled xml document.CTFrameset.SzgetSz()Gets the value of the sz property.voidsetFrameLayout(CTFrameLayout value)Sets the value of the frameLayout property.voidsetFramesetSplitbar(CTFramesetSplitbar value)Sets the value of the framesetSplitbar property.voidsetParent(java.lang.Object parent)voidsetSz(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
-
framesetSplitbar
-
frameLayout
-
framesetOrFrame
protected java.util.List<java.lang.Object> framesetOrFrame
-
-
Constructor Details
-
CTFrameset
public CTFrameset()
-
-
Method Details
-
getSz
Gets the value of the sz property.- Returns:
- possible object is
CTFrameset.Sz
-
setSz
Sets the value of the sz property.- Parameters:
value- allowed object isCTFrameset.Sz
-
getFramesetSplitbar
Gets the value of the framesetSplitbar property.- Returns:
- possible object is
CTFramesetSplitbar
-
setFramesetSplitbar
Sets the value of the framesetSplitbar property.- Parameters:
value- allowed object isCTFramesetSplitbar
-
getFrameLayout
Gets the value of the frameLayout property.- Returns:
- possible object is
CTFrameLayout
-
setFrameLayout
Sets the value of the frameLayout property.- Parameters:
value- allowed object isCTFrameLayout
-
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
setmethod 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
CTFramesetCTFrame -
getParent
public java.lang.Object getParent()Gets the parent object in the object tree representing the unmarshalled xml document. -
setParent
public void setParent(java.lang.Object parent) -
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.
-