Class TraceViewType

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

public class TraceViewType extends Object implements Child
http://www.w3.org/TR/InkML/#traceViewElement

Java class for traceView.type complex type.

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

 <complexType name="traceView.type">
   <complexContent>
     <restriction base="{http://www.w3.org/2001/XMLSchema}anyType">
       <attribute ref="{http://www.w3.org/XML/1998/namespace}id"/>
       <attribute name="traceDataRef" type="{http://www.w3.org/2001/XMLSchema}anyURI" />
       <attribute name="from" type="{http://www.w3.org/2003/InkML}integerList.type" />
       <attribute name="to" type="{http://www.w3.org/2003/InkML}integerList.type" />
     </restriction>
   </complexContent>
 </complexType>
 
  • Field Details

    • id

      protected String id
    • traceDataRef

      protected String traceDataRef
    • from

      protected String from
    • to

      protected String to
  • Constructor Details

    • TraceViewType

      public TraceViewType()
  • Method Details

    • getId

      public String getId()
      Gets the value of the id property.
      Returns:
      possible object is String
    • setId

      public void setId(String value)
      Sets the value of the id property.
      Parameters:
      value - allowed object is String
    • getTraceDataRef

      public String getTraceDataRef()
      Gets the value of the traceDataRef property.
      Returns:
      possible object is String
    • setTraceDataRef

      public void setTraceDataRef(String value)
      Sets the value of the traceDataRef property.
      Parameters:
      value - allowed object is String
    • getFrom

      public String getFrom()
      Gets the value of the from property.
      Returns:
      possible object is String
    • setFrom

      public void setFrom(String value)
      Sets the value of the from property.
      Parameters:
      value - allowed object is String
    • getTo

      public String getTo()
      Gets the value of the to property.
      Returns:
      possible object is String
    • setTo

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