-
Notifications
You must be signed in to change notification settings - Fork 15
Expand file tree
/
Copy pathEvent.java
More file actions
48 lines (37 loc) · 946 Bytes
/
Event.java
File metadata and controls
48 lines (37 loc) · 946 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
package snap.webapi;
/**
* This class is a wrapper for Web API Event (https://developer.mozilla.org/en-US/docs/Web/API/Event).
*/
public class Event extends JSProxy {
/**
* Constructor.
*/
public Event(Object eventJS)
{
super(eventJS);
}
/**
* Returns the type.
*/
public String getType() { return getMemberString("type"); }
/**
* Returns the target.
*/
public EventTarget getTarget() { return null; }
/**
* Returns the target.
*/
public EventTarget getCurrentTarget() { return null; }
/**
* Event method: stopPropagation().
*/
public void stopPropagation() { call("stopPropagation"); }
/**
* Event method: preventDefault().
*/
public void preventDefault() { call("preventDefault"); }
//short getEventPhase();
//boolean isBubbles();
//boolean isCancelable();
//JSObject getTimeStamp();
}