Class CTTblLook

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

public class CTTblLook
extends java.lang.Object
implements Child

Java class for CT_TblLook complex type.

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

 <complexType name="CT_TblLook">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="firstRow" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_OnOff" />
       <attribute name="lastRow" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_OnOff" />
       <attribute name="firstColumn" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_OnOff" />
       <attribute name="lastColumn" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_OnOff" />
       <attribute name="noHBand" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_OnOff" />
       <attribute name="noVBand" type="{http://schemas.openxmlformats.org/officeDocument/2006/sharedTypes}ST_OnOff" />
       <attribute name="val" type="{http://schemas.openxmlformats.org/wordprocessingml/2006/main}ST_ShortHexNumber" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected STOnOff firstColumn  
    protected STOnOff firstRow  
    protected STOnOff lastColumn  
    protected STOnOff lastRow  
    protected STOnOff noHBand  
    protected STOnOff noVBand  
    protected java.lang.String val  
  • Constructor Summary

    Constructors
    Constructor Description
    CTTblLook()  
  • 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.
    STOnOff getFirstColumn()
    Gets the value of the firstColumn property.
    STOnOff getFirstRow()
    Gets the value of the firstRow property.
    STOnOff getLastColumn()
    Gets the value of the lastColumn property.
    STOnOff getLastRow()
    Gets the value of the lastRow property.
    STOnOff getNoHBand()
    Gets the value of the noHBand property.
    STOnOff getNoVBand()
    Gets the value of the noVBand property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    java.lang.String getVal()
    Gets the value of the val property.
    void setFirstColumn​(STOnOff value)
    Sets the value of the firstColumn property.
    void setFirstRow​(STOnOff value)
    Sets the value of the firstRow property.
    void setLastColumn​(STOnOff value)
    Sets the value of the lastColumn property.
    void setLastRow​(STOnOff value)
    Sets the value of the lastRow property.
    void setNoHBand​(STOnOff value)
    Sets the value of the noHBand property.
    void setNoVBand​(STOnOff value)
    Sets the value of the noVBand property.
    void setParent​(java.lang.Object parent)  
    void setVal​(java.lang.String value)
    Sets the value of the val property.

    Methods inherited from class java.lang.Object

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

    • firstRow

      protected STOnOff firstRow
    • lastRow

      protected STOnOff lastRow
    • firstColumn

      protected STOnOff firstColumn
    • lastColumn

      protected STOnOff lastColumn
    • noHBand

      protected STOnOff noHBand
    • noVBand

      protected STOnOff noVBand
    • val

      protected java.lang.String val
  • Constructor Details

    • CTTblLook

      public CTTblLook()
  • Method Details

    • getFirstRow

      public STOnOff getFirstRow()
      Gets the value of the firstRow property.
      Returns:
      possible object is STOnOff
    • setFirstRow

      public void setFirstRow​(STOnOff value)
      Sets the value of the firstRow property.
      Parameters:
      value - allowed object is STOnOff
    • getLastRow

      public STOnOff getLastRow()
      Gets the value of the lastRow property.
      Returns:
      possible object is STOnOff
    • setLastRow

      public void setLastRow​(STOnOff value)
      Sets the value of the lastRow property.
      Parameters:
      value - allowed object is STOnOff
    • getFirstColumn

      public STOnOff getFirstColumn()
      Gets the value of the firstColumn property.
      Returns:
      possible object is STOnOff
    • setFirstColumn

      public void setFirstColumn​(STOnOff value)
      Sets the value of the firstColumn property.
      Parameters:
      value - allowed object is STOnOff
    • getLastColumn

      public STOnOff getLastColumn()
      Gets the value of the lastColumn property.
      Returns:
      possible object is STOnOff
    • setLastColumn

      public void setLastColumn​(STOnOff value)
      Sets the value of the lastColumn property.
      Parameters:
      value - allowed object is STOnOff
    • getNoHBand

      public STOnOff getNoHBand()
      Gets the value of the noHBand property.
      Returns:
      possible object is STOnOff
    • setNoHBand

      public void setNoHBand​(STOnOff value)
      Sets the value of the noHBand property.
      Parameters:
      value - allowed object is STOnOff
    • getNoVBand

      public STOnOff getNoVBand()
      Gets the value of the noVBand property.
      Returns:
      possible object is STOnOff
    • setNoVBand

      public void setNoVBand​(STOnOff value)
      Sets the value of the noVBand property.
      Parameters:
      value - allowed object is STOnOff
    • getVal

      public java.lang.String getVal()
      Gets the value of the val property.
      Returns:
      possible object is String
    • setVal

      public void setVal​(java.lang.String value)
      Sets the value of the val 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.