Package org.xlsx4j.sml
Class CTRevisionFormatting
java.lang.Object
org.xlsx4j.sml.CTRevisionFormatting
- All Implemented Interfaces:
Child
public class CTRevisionFormatting extends java.lang.Object implements Child
Java class for CT_RevisionFormatting complex type.
The following schema fragment specifies the expected content contained within this class.
<complexType name="CT_RevisionFormatting">
<complexContent>
<restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
<sequence>
<element name="dxf" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_Dxf" minOccurs="0"/>
<element name="extLst" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}CT_ExtensionList" minOccurs="0"/>
</sequence>
<attribute name="sheetId" use="required" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
<attribute name="xfDxf" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
<attribute name="s" type="{http://www.w3.org/2001/XMLSchema}boolean" default="false" />
<attribute name="sqref" use="required" type="{http://schemas.openxmlformats.org/spreadsheetml/2006/main}ST_Sqref" />
<attribute name="start" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
<attribute name="length" type="{http://www.w3.org/2001/XMLSchema}unsignedInt" />
</restriction>
</complexContent>
</complexType>
-
Field Summary
-
Constructor Summary
Constructors Constructor Description CTRevisionFormatting() -
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.CTDxfgetDxf()Gets the value of the dxf property.CTExtensionListgetExtLst()Gets the value of the extLst property.java.lang.LonggetLength()Gets the value of the length property.java.lang.ObjectgetParent()Gets the parent object in the object tree representing the unmarshalled xml document.longgetSheetId()Gets the value of the sheetId property.java.util.List<java.lang.String>getSqref()Gets the value of the sqref property.java.lang.LonggetStart()Gets the value of the start property.booleanisS()Gets the value of the s property.booleanisXfDxf()Gets the value of the xfDxf property.voidsetDxf(CTDxf value)Sets the value of the dxf property.voidsetExtLst(CTExtensionList value)Sets the value of the extLst property.voidsetLength(java.lang.Long value)Sets the value of the length property.voidsetParent(java.lang.Object parent)voidsetS(java.lang.Boolean value)Sets the value of the s property.voidsetSheetId(long value)Sets the value of the sheetId property.voidsetStart(java.lang.Long value)Sets the value of the start property.voidsetXfDxf(java.lang.Boolean value)Sets the value of the xfDxf property.Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Field Details
-
dxf
-
extLst
-
sheetId
protected long sheetId -
xfDxf
protected java.lang.Boolean xfDxf -
s
protected java.lang.Boolean s -
sqref
protected java.util.List<java.lang.String> sqref -
start
protected java.lang.Long start -
length
protected java.lang.Long length
-
-
Constructor Details
-
CTRevisionFormatting
public CTRevisionFormatting()
-
-
Method Details
-
getDxf
Gets the value of the dxf property.- Returns:
- possible object is
CTDxf
-
setDxf
Sets the value of the dxf property.- Parameters:
value- allowed object isCTDxf
-
getExtLst
Gets the value of the extLst property.- Returns:
- possible object is
CTExtensionList
-
setExtLst
Sets the value of the extLst property.- Parameters:
value- allowed object isCTExtensionList
-
getSheetId
public long getSheetId()Gets the value of the sheetId property. -
setSheetId
public void setSheetId(long value)Sets the value of the sheetId property. -
isXfDxf
public boolean isXfDxf()Gets the value of the xfDxf property.- Returns:
- possible object is
Boolean
-
setXfDxf
public void setXfDxf(java.lang.Boolean value)Sets the value of the xfDxf property.- Parameters:
value- allowed object isBoolean
-
isS
public boolean isS()Gets the value of the s property.- Returns:
- possible object is
Boolean
-
setS
public void setS(java.lang.Boolean value)Sets the value of the s property.- Parameters:
value- allowed object isBoolean
-
getSqref
public java.util.List<java.lang.String> getSqref()Gets the value of the sqref 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 sqref property.For example, to add a new item, do as follows:
getSqref().add(newItem);Objects of the following type(s) are allowed in the list
String -
getStart
public java.lang.Long getStart()Gets the value of the start property.- Returns:
- possible object is
Long
-
setStart
public void setStart(java.lang.Long value)Sets the value of the start property.- Parameters:
value- allowed object isLong
-
getLength
public java.lang.Long getLength()Gets the value of the length property.- Returns:
- possible object is
Long
-
setLength
public void setLength(java.lang.Long value)Sets the value of the length property.- Parameters:
value- allowed object isLong
-
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.
-