Update athen editorevents authored by Markus Krug's avatar Markus Krug
...@@ -57,18 +57,9 @@ public void onEditorDoubleClicked(Event arg0) { ...@@ -57,18 +57,9 @@ public void onEditorDoubleClicked(Event arg0) {
Those methods get called, whenever the editor was scrolled (horizontally or vertically), if the right click menu of the editor is requested or if any mouse button was pressed Those methods get called, whenever the editor was scrolled (horizontally or vertically), if the right click menu of the editor is requested or if any mouse button was pressed
```java ## When to use those methods and what is stored inside
public void onEditorDoubleClicked(Event arg0) {
public void onEditorWasScrolled(Event arg0) {
public void onEditorRightClickMenuRequested(Event arg0) { This section gives intell about when you could use those methods and what kind of objects you can expect within those events
public void onEditorCaretChanged(Event arg0) {
public void onEditorMouseUp(Event arg0) {
public void onEditorMouseDown(Event arg0) {
```