Class BindType

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

public class BindType extends 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 Details

    • source

      protected String source
    • target

      protected String target
    • column

      protected String column
    • variable

      protected String variable
  • Constructor Details

    • BindType

      public BindType()
  • Method Details

    • getSource

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

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

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

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

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

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

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

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