Package org.docx4j.wml
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.StringappNameprotected booleancheckStyleprotected java.math.BigIntegerdllVersionprotected java.lang.Stringlangprotected java.lang.BooleannlCheckprotected java.math.BigIntegervendorID -
Constructor Summary
Constructors Constructor Description CTWritingStyle() -
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.java.lang.StringgetAppName()Gets the value of the appName property.java.math.BigIntegergetDllVersion()Gets the value of the dllVersion property.java.lang.StringgetLang()Gets the value of the lang property.java.lang.ObjectgetParent()Gets the parent object in the object tree representing the unmarshalled xml document.java.math.BigIntegergetVendorID()Gets the value of the vendorID property.booleanisCheckStyle()Gets the value of the checkStyle property.booleanisNlCheck()Gets the value of the nlCheck property.voidsetAppName(java.lang.String value)Sets the value of the appName property.voidsetCheckStyle(boolean value)Sets the value of the checkStyle property.voidsetDllVersion(java.math.BigInteger value)Sets the value of the dllVersion property.voidsetLang(java.lang.String value)Sets the value of the lang property.voidsetNlCheck(java.lang.Boolean value)Sets the value of the nlCheck property.voidsetParent(java.lang.Object parent)voidsetVendorID(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 isString
-
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 isBigInteger
-
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 isBigInteger
-
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 isBoolean
-
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 isString
-
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.
-