Module neovim.notifications
Class NeovimRedrawEvent
- java.lang.Object
-
- com.ensarsarajcic.neovim.java.notifications.ui.NeovimRedrawEvent
-
- All Implemented Interfaces:
NeovimNotification
public final class NeovimRedrawEvent extends java.lang.Object implements NeovimNotification
Represents a special notification that consists of multipleUiEvents
-
-
Field Summary
Fields Modifier and Type Field Description static java.lang.StringNAME
-
Constructor Summary
Constructors Constructor Description NeovimRedrawEvent(java.util.List<UiEvent> uiEvents)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.StringgetNotificationName()Provides the name of this notification type.java.util.List<UiEvent>getUiEvents()java.lang.StringtoString()
-
-
-
Field Detail
-
NAME
public static final java.lang.String NAME
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
NeovimRedrawEvent
public NeovimRedrawEvent(java.util.List<UiEvent> uiEvents)
-
-
Method Detail
-
getNotificationName
public java.lang.String getNotificationName()
Description copied from interface:NeovimNotificationProvides the name of this notification type. This will usually have the same value between instances.- Specified by:
getNotificationNamein interfaceNeovimNotification- Returns:
- name of this notification type
-
getUiEvents
public java.util.List<UiEvent> getUiEvents()
-
toString
public java.lang.String toString()
- Overrides:
toStringin classjava.lang.Object
-
-