Class BindType

java.lang.Object
org.docx4j.org.w3.x2003.inkML.BindType
All Implemented Interfaces:
Child

public class BindType
extends java.lang.Object
implements Child
http://www.w3.org/TR/InkML/#bindElement

Java class for bind.type complex type.

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

 <complexType name="bind.type">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute name="source" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="target" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="column" type="{http://www.w3.org/2001/XMLSchema}string" />
       <attribute name="variable" type="{http://www.w3.org/2001/XMLSchema}string" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Summary

    Fields
    Modifier and Type Field Description
    protected java.lang.String column  
    protected java.lang.String source  
    protected java.lang.String target  
    protected java.lang.String variable  
  • Constructor Summary

    Constructors
    Constructor Description
    BindType()  
  • 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.
    java.lang.String getColumn()
    Gets the value of the column property.
    java.lang.Object getParent()
    Gets the parent object in the object tree representing the unmarshalled xml document.
    java.lang.String getSource()
    Gets the value of the source property.
    java.lang.String getTarget()
    Gets the value of the target property.
    java.lang.String getVariable()
    Gets the value of the variable property.
    void setColumn​(java.lang.String value)
    Sets the value of the column property.
    void setParent​(java.lang.Object parent)  
    void setSource​(java.lang.String value)
    Sets the value of the source property.
    void setTarget​(java.lang.String value)
    Sets the value of the target property.
    void setVariable​(java.lang.String value)
    Sets the value of the variable property.

    Methods inherited from class java.lang.Object

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

    • source

      protected java.lang.String source
    • target

      protected java.lang.String target
    • column

      protected java.lang.String column
    • variable

      protected java.lang.String variable
  • Constructor Details

    • BindType

      public BindType()
  • Method Details

    • getSource

      public java.lang.String getSource()
      Gets the value of the source property.
      Returns:
      possible object is String
    • setSource

      public void setSource​(java.lang.String value)
      Sets the value of the source property.
      Parameters:
      value - allowed object is String
    • getTarget

      public java.lang.String getTarget()
      Gets the value of the target property.
      Returns:
      possible object is String
    • setTarget

      public void setTarget​(java.lang.String value)
      Sets the value of the target property.
      Parameters:
      value - allowed object is String
    • getColumn

      public java.lang.String getColumn()
      Gets the value of the column property.
      Returns:
      possible object is String
    • setColumn

      public void setColumn​(java.lang.String value)
      Sets the value of the column property.
      Parameters:
      value - allowed object is String
    • getVariable

      public java.lang.String getVariable()
      Gets the value of the variable property.
      Returns:
      possible object is String
    • setVariable

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