Free.awt
Class Substring

java.lang.Object
  |
  +--Free.awt.Substring

class Substring
extends java.lang.Object

Encapsulates a substring that is ready to be drawn. Has an x and y screen offset (xOff and yOff), an offset into the chars array (begin) and length.


Field Summary
 int begin
           
 int length
           
 int xOff
           
 int yOff
           
 
Constructor Summary
Substring(int begin, int length, int xOff, int yOff)
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

begin

public int begin

length

public int length

xOff

public int xOff

yOff

public int yOff
Constructor Detail

Substring

public Substring(int begin,
                 int length,
                 int xOff,
                 int yOff)
Parameters:
begin - starting index into the chars array
length - length of the substring
xOff - xOffset to start drawing
yOff - yOffset to start drawing