Class CTFramesetSplitbar

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

public class CTFramesetSplitbar
extends java.lang.Object
implements Child

Java class for CT_FramesetSplitbar complex type.

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

 <complexType name="CT_FramesetSplitbar">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <sequence>
         <element name="w" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}CT_TwipsMeasure" minOccurs="0"/>
         <element name="color" minOccurs="0">
           <complexType>
             <complexContent>
               <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
                 <attribute name="val" use="required" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_HexColor" />
                 <attribute name="themeColor" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_ThemeColor" />
                 <attribute name="themeTint" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_UcharHexNumber" />
                 <attribute name="themeShade" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_UcharHexNumber" />
               </restriction>
             </complexContent>
           </complexType>
         </element>
         <element name="noBorder" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}BooleanDefaultTrue" minOccurs="0"/>
         <element name="flatBorders" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}BooleanDefaultTrue" minOccurs="0"/>
       </sequence>
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

  • Constructor Details

    • CTFramesetSplitbar

      public CTFramesetSplitbar()
  • Method Details

    • getW

      public CTTwipsMeasure getW()
      Gets the value of the w property.
      Returns:
      possible object is CTTwipsMeasure
    • setW

      public void setW​(CTTwipsMeasure value)
      Sets the value of the w property.
      Parameters:
      value - allowed object is CTTwipsMeasure
    • getColor

      public CTFramesetSplitbar.Color getColor()
      Gets the value of the color property.
      Returns:
      possible object is CTFramesetSplitbar.Color
    • setColor

      public void setColor​(CTFramesetSplitbar.Color value)
      Sets the value of the color property.
      Parameters:
      value - allowed object is CTFramesetSplitbar.Color
    • getNoBorder

      public BooleanDefaultTrue getNoBorder()
      Gets the value of the noBorder property.
      Returns:
      possible object is BooleanDefaultTrue
    • setNoBorder

      public void setNoBorder​(BooleanDefaultTrue value)
      Sets the value of the noBorder property.
      Parameters:
      value - allowed object is BooleanDefaultTrue
    • getFlatBorders

      public BooleanDefaultTrue getFlatBorders()
      Gets the value of the flatBorders property.
      Returns:
      possible object is BooleanDefaultTrue
    • setFlatBorders

      public void setFlatBorders​(BooleanDefaultTrue value)
      Sets the value of the flatBorders property.
      Parameters:
      value - allowed object is BooleanDefaultTrue
    • 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.