Class CTWritingStyle

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

public class CTWritingStyle
extends java.lang.Object
implements Child

Java class for CT_WritingStyle complex type.

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

 <complexType name="CT_WritingStyle">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="lang" use="required" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_Lang" />
       <attribute name="vendorID" use="required" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_DecimalNumber" />
       <attribute name="dllVersion" use="required" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_DecimalNumber" />
       <attribute name="nlCheck" type="{http://www.w3.org/2001/XMLSchema}boolean" default="true" />
       <attribute name="checkStyle" use="required" type="{http://www.w3.org/2001/XMLSchema}boolean" />
       <attribute name="appName" use="required" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_String" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected java.lang.String appName  
    protected boolean checkStyle  
    protected java.math.BigInteger dllVersion  
    protected java.lang.String lang  
    protected java.lang.Boolean nlCheck  
    protected java.math.BigInteger vendorID  
  • Constructor Summary

    Constructors
    Constructor Description
    CTWritingStyle()  
  • 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.
    java.lang.String getAppName()
    Gets the value of the appName property.
    java.math.BigInteger getDllVersion()
    Gets the value of the dllVersion property.
    java.lang.String getLang()
    Gets the value of the lang property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    java.math.BigInteger getVendorID()
    Gets the value of the vendorID property.
    boolean isCheckStyle()
    Gets the value of the checkStyle property.
    boolean isNlCheck()
    Gets the value of the nlCheck property.
    void setAppName​(java.lang.String value)
    Sets the value of the appName property.
    void setCheckStyle​(boolean value)
    Sets the value of the checkStyle property.
    void setDllVersion​(java.math.BigInteger value)
    Sets the value of the dllVersion property.
    void setLang​(java.lang.String value)
    Sets the value of the lang property.
    void setNlCheck​(java.lang.Boolean value)
    Sets the value of the nlCheck property.
    void setParent​(java.lang.Object parent)  
    void setVendorID​(java.math.BigInteger value)
    Sets the value of the vendorID property.

    Methods inherited from class java.lang.Object

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

    • lang

      protected java.lang.String lang
    • vendorID

      protected java.math.BigInteger vendorID
    • dllVersion

      protected java.math.BigInteger dllVersion
    • nlCheck

      protected java.lang.Boolean nlCheck
    • checkStyle

      protected boolean checkStyle
    • appName

      protected java.lang.String appName
  • Constructor Details

    • CTWritingStyle

      public CTWritingStyle()
  • Method Details

    • getLang

      public java.lang.String getLang()
      Gets the value of the lang property.
      Returns:
      possible object is String
    • setLang

      public void setLang​(java.lang.String value)
      Sets the value of the lang property.
      Parameters:
      value - allowed object is String
    • getVendorID

      public java.math.BigInteger getVendorID()
      Gets the value of the vendorID property.
      Returns:
      possible object is BigInteger
    • setVendorID

      public void setVendorID​(java.math.BigInteger value)
      Sets the value of the vendorID property.
      Parameters:
      value - allowed object is BigInteger
    • getDllVersion

      public java.math.BigInteger getDllVersion()
      Gets the value of the dllVersion property.
      Returns:
      possible object is BigInteger
    • setDllVersion

      public void setDllVersion​(java.math.BigInteger value)
      Sets the value of the dllVersion property.
      Parameters:
      value - allowed object is BigInteger
    • isNlCheck

      public boolean isNlCheck()
      Gets the value of the nlCheck property.
      Returns:
      possible object is Boolean
    • setNlCheck

      public void setNlCheck​(java.lang.Boolean value)
      Sets the value of the nlCheck property.
      Parameters:
      value - allowed object is Boolean
    • isCheckStyle

      public boolean isCheckStyle()
      Gets the value of the checkStyle property.
    • setCheckStyle

      public void setCheckStyle​(boolean value)
      Sets the value of the checkStyle property.
    • getAppName

      public java.lang.String getAppName()
      Gets the value of the appName property.
      Returns:
      possible object is String
    • setAppName

      public void setAppName​(java.lang.String value)
      Sets the value of the appName property.
      Parameters:
      value - allowed object is String
    • 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.