Package org.docx4j.org.w3.x2003.inkML
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
-
Constructor Summary
Constructors Constructor Description BindType() -
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.java.lang.StringgetColumn()Gets the value of the column property.java.lang.ObjectgetParent()Gets the parent object in the object tree representing the unmarshalled xml document.java.lang.StringgetSource()Gets the value of the source property.java.lang.StringgetTarget()Gets the value of the target property.java.lang.StringgetVariable()Gets the value of the variable property.voidsetColumn(java.lang.String value)Sets the value of the column property.voidsetParent(java.lang.Object parent)voidsetSource(java.lang.String value)Sets the value of the source property.voidsetTarget(java.lang.String value)Sets the value of the target property.voidsetVariable(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 isString
-
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 isString
-
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 isString
-
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 isString
-
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.
-