sub_arctic.text
Class run

java.lang.Object
  |
  +--sub_arctic.text.run
Direct Known Subclasses:
marker, text_run

public abstract class run
extends java.lang.Object

This is the class that holds the information necessary to maintain logical information about a section of a document.


Field Summary
protected  run _next
          Sucessor of this node.
protected  run _prev
          Predecessor of this node.
 
Constructor Summary
run()
           
 
Method Summary
 run next()
          Return the successor of this node.
 run prev()
          Return the predecessor of this nodee.
abstract  int width()
          Width of this object in pixels.
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

_prev

protected run _prev
Predecessor of this node.

_next

protected run _next
Sucessor of this node.
Constructor Detail

run

public run()
Method Detail

prev

public run prev()
Return the predecessor of this nodee.
Returns:
node the predecessor of this node

next

public run next()
Return the successor of this node.
Returns:
node the successor of this node

width

public abstract int width()
Width of this object in pixels. This value may be zero if this run is a marker or some non-displaying entity.