Package ro.sync.ecss.extensions.api
Class AuthorActionEventDetails
- java.lang.Object
-
- ro.sync.ecss.extensions.api.AuthorActionEventDetails
-
@API(type=EXTENDABLE, src=PUBLIC) public class AuthorActionEventDetails extends java.lang.Object
Class offering details about an author action event.- Since:
- 23
-
-
Constructor Summary
Constructors Constructor Description AuthorActionEventDetails(AuthorActionEventHandler.AuthorActionEventType eventType, boolean showContentCompletionWindowOnEnter)
Class containing information on an author action event.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description AuthorActionEventHandler.AuthorActionEventType
getEventType()
boolean
isShowContentCompletionWindowOnEnter()
-
-
-
Constructor Detail
-
AuthorActionEventDetails
public AuthorActionEventDetails(AuthorActionEventHandler.AuthorActionEventType eventType, boolean showContentCompletionWindowOnEnter)
Class containing information on an author action event.- Parameters:
eventType
- the event type.showContentCompletionWindowOnEnter
-true
if the content completion window should be shown when ENTER is pressed.
-
-
Method Detail
-
getEventType
public AuthorActionEventHandler.AuthorActionEventType getEventType()
- Returns:
- Returns the eventType.
-
isShowContentCompletionWindowOnEnter
public boolean isShowContentCompletionWindowOnEnter()
- Returns:
- Returns
true
if the content completion window will be shown when ENTER is pressed. This setting is controlled by the "Press ENTER to show available content completion proposals" checkbox.
-
-