| java.lang.Object org.gjt.sp.jedit.textarea.Anchor
All known Subclasses: org.gjt.sp.jedit.textarea.FirstLine, org.gjt.sp.jedit.textarea.ScrollLineCount,
Anchor | abstract class Anchor (Code) | | A base point for physical line/screen line conversion.
author: Slava Pestov version: $Id: Anchor.java 10751 2007-09-25 20:27:37Z kpouer $ |
callChanged | boolean callChanged(Code) | | |
callReset | boolean callReset(Code) | | |
physicalLine | int physicalLine(Code) | | The physical line.
|
scrollLine | int scrollLine(Code) | | The visible line index. (from the top of the buffer). It can be different from physical line
when using soft wrap.
|
changed | abstract void changed()(Code) | | |
contentInserted | void contentInserted(int startLine, int numLines)(Code) | | Some content is inserted.
Parameters: startLine - the start of the insert Parameters: numLines - the number of insterted lines |
preContentRemoved | void preContentRemoved(int startLine, int offset, int numLines)(Code) | | Method called before a content is removed from a buffer.
Parameters: startLine - the first line of the removed content Parameters: offset - the offset in the start line Parameters: numLines - the number of removed lines |
reset | abstract void reset()(Code) | | |
|
|