Class CTTblLook

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

public class CTTblLook extends 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 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 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 String getVal()
      Gets the value of the val property.
      Returns:
      possible object is String
    • setVal

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