Package org.docx4j.wml
Class CTFrameset
java.lang.Object
org.docx4j.wml.CTFrameset
- All Implemented Interfaces:
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 ClassesModifier and TypeClassDescriptionstatic classJava class for anonymous complex type. -
Field Summary
FieldsModifier and TypeFieldDescriptionprotected CTFrameLayoutprotected CTFramesetSplitbarprotected CTFrameset.Sz -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidafterUnmarshal(jakarta.xml.bind.Unmarshaller unmarshaller, Object parent) This method is invoked by the JAXB implementation on each instance when unmarshalling completes.Gets the value of the frameLayout property.Gets the value of the framesetOrFrame property.Gets the value of the framesetSplitbar property.Gets the parent object in the object tree representing the unmarshalled xml document.getSz()Gets the value of the sz property.voidsetFrameLayout(CTFrameLayout value) Sets the value of the frameLayout property.voidSets the value of the framesetSplitbar property.voidvoidsetSz(CTFrameset.Sz value) Sets the value of the sz property.
-
Field Details
-
sz
-
framesetSplitbar
-
frameLayout
-
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
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
Gets the parent object in the object tree representing the unmarshalled xml document. -
setParent
-
afterUnmarshal
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.
-