Package com.nevergarden.myna.events
Interface IEvent
-
- All Known Implementing Classes:
Event,TouchEvent
public interface IEventEvent interface.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description java.lang.BooleangetBubbles()Get bubbles property.EventDispatchergetCurrentTarget()java.lang.ObjectgetData()Get data of current data.java.lang.BooleangetStopsImmediatePropagation()EventDispatchergetTarget()Get target.java.lang.StringgetType()Get type of current event.IEventreset(java.lang.String type, java.lang.Boolean bubbles, java.lang.Object data)Resets the event.voidsetBubbles(java.lang.Boolean bubbles)Sets bubbles property.voidsetCurrentTarget(EventDispatcher target)voidsetData(java.lang.Object data)Sets data of current data.voidsetTarget(EventDispatcher target)Set target.voidsetType(java.lang.String type)Sets type of current event.
-
-
-
Method Detail
-
getType
java.lang.String getType()
Get type of current event.
-
setType
void setType(java.lang.String type)
Sets type of current event.
-
getBubbles
java.lang.Boolean getBubbles()
Get bubbles property.
-
setBubbles
void setBubbles(java.lang.Boolean bubbles)
Sets bubbles property.
-
getData
java.lang.Object getData()
Get data of current data.
-
setData
void setData(java.lang.Object data)
Sets data of current data.
-
getTarget
EventDispatcher getTarget()
Get target.
-
setTarget
void setTarget(EventDispatcher target)
Set target.
-
getCurrentTarget
EventDispatcher getCurrentTarget()
-
setCurrentTarget
void setCurrentTarget(EventDispatcher target)
-
getStopsImmediatePropagation
java.lang.Boolean getStopsImmediatePropagation()
-
reset
IEvent reset(java.lang.String type, java.lang.Boolean bubbles, java.lang.Object data)
Resets the event.
-
-