A Position
object points at a location between two characters.
As the surrounding content is altered, the Position
object
adjusts its offset automatically to reflect the changes. If content is
inserted or removed before the Position
object's location, then the
Position
increments or decrements its offset, respectively,
so as to point to the same location. If a portion of the document is removed
that contains a Position
's offset, then the Position
's
offset becomes that of the beginning of the removed region. For example, if
a Position
has an offset of 5 and the region 2-10 is removed, then
the Position
's offset becomes 2.
Position
with an offset of 0 is a special case. It never changes its
offset while document content is altered.
Modifier and Type | Class and Description |
---|---|
public static class | Position.
A typesafe enumeration to indicate bias to a position in the model. |
Modifier and Type | Method and Description |
---|---|
public int |
getOffset | back to summary |
---|---|
public int getOffset() Fetches the current offset within the document.
|
Modifier and Type | Field and Description |
---|---|
public static final Position. | Backward
Indicates a bias toward the previous character in the model. |
public static final Position. | Forward
Indicates to bias toward the next character in the model. |
private String |
Modifier and Type | Method and Description |
---|---|
public String |
Backward | back to summary |
---|---|
public static final Position. Indicates a bias toward the previous character in the model. |
Forward | back to summary |
---|---|
public static final Position. Indicates to bias toward the next character in the model. |
name | back to summary |
---|---|
private String name |
Bias | back to summary |
---|---|
private Bias(String name) |
toString | back to summary |
---|---|
public String toString() Overrides java. string representation
|