Class CTWritingStyle

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

public class CTWritingStyle extends 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 Details

    • lang

      protected String lang
    • vendorID

      protected BigInteger vendorID
    • dllVersion

      protected BigInteger dllVersion
    • nlCheck

      protected Boolean nlCheck
    • checkStyle

      protected boolean checkStyle
    • appName

      protected String appName
  • Constructor Details

    • CTWritingStyle

      public CTWritingStyle()
  • Method Details

    • getLang

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

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

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

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

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

      public void setDllVersion(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(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 String getAppName()
      Gets the value of the appName property.
      Returns:
      possible object is String
    • setAppName

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