Package app.events
Class EditorChangedEvent
java.lang.Object
app.events.Event
app.events.EditorChangedEvent
public class EditorChangedEvent extends Event
Event signalizing that the content or the cursor state in the editor has been modified
-
Constructor Summary
Constructors Constructor Description EditorChangedEvent(int line, int column)
Event signalizing that the content or the cursor state in the editor has been modified -
Method Summary
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
-
Constructor Details
-
EditorChangedEvent
public EditorChangedEvent(int line, int column)Event signalizing that the content or the cursor state in the editor has been modified- Parameters:
line
- The line number of the cursorcolumn
- The column number of the cursor
-
-
Method Details
-
getLine
public int getLine()- Returns:
- The line number of the cursor
-
getColumn
public int getColumn()- Returns:
- The column number of the cursor
-