org.gjt.sp.jedit.textarea
Class Selection.Rect
java.lang.Object
org.gjt.sp.jedit.textarea.Selection
org.gjt.sp.jedit.textarea.Selection.Rect
- All Implemented Interfaces:
- java.lang.Cloneable
- Enclosing class:
- Selection
public static class Selection.Rect
- extends Selection
A rectangular selection.
- Since:
- jEdit 3.2pre1
| Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
Selection.Rect
public Selection.Rect()
Selection.Rect
public Selection.Rect(Selection sel)
Selection.Rect
public Selection.Rect(int start,
int end)
Selection.Rect
public Selection.Rect(int startLine,
int start,
int endLine,
int end)
Selection.Rect
public Selection.Rect(JEditBuffer buffer,
int startLine,
int startColumn,
int endLine,
int endColumn)
getStartColumn
public int getStartColumn(JEditBuffer buffer)
getEndColumn
public int getEndColumn(JEditBuffer buffer)
getStart
public int getStart(JEditBuffer buffer,
int line)
- Description copied from class:
Selection
- Returns the beginning of the portion of the selection
falling on the specified line. Used to manipulate
selection text on a line-by-line basis.
- Specified by:
getStart in class Selection
- Parameters:
buffer - The bufferline - The line number
getEnd
public int getEnd(JEditBuffer buffer,
int line)
- Description copied from class:
Selection
- Returns the end of the portion of the selection
falling on the specified line. Used to manipulate
selection text on a line-by-line basis.
- Specified by:
getEnd in class Selection
- Parameters:
buffer - The bufferline - The line number