summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/kitfox/salamander/svg/script/SVGEvent.java
blob: 6cdf85bde149a2e5b2f61e4432b5cec6e07fe016 (plain) (blame)
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
/*
 * SVGEvent.java
 *
 * Created on April 13, 2007, 11:44 AM
 *
 * To change this template, choose Tools | Template Manager
 * and open the template in the editor.
 */

package com.kitfox.salamander.svg.script;

import com.kitfox.salamander.svg.basic.SVGElement;
import org.w3c.dom.events.Event;

/**
 * 
 * The SVG event set contains a list of special event types which are available in SVG.
 * 
 * A DOM consumer can use the hasFeature of the DOMImplementation interface to determine whether the SVG event set has been implemented by a DOM implementation. The feature string for this event set is "SVGEvents". This string is also used with the createEvent method.
 * 
 * The SVG events use the base DOM Event interface to pass contextual information.
 * 
 * The different types of such events that can occur are:
 * 
 * SVGLoad
 *    See SVGLoad event.
 * 
 *        * Bubbles: No
 *        * Cancelable: No
 *        * Context Info: None
 * 
 * SVGUnload
 *    See SVGUnload event.
 * 
 *        * Bubbles: No
 *        * Cancelable: No
 *        * Context Info: None
 * 
 * SVGAbort
 *    See SVGAbort event.
 * 
 *        * Bubbles: Yes
 *        * Cancelable: No
 *        * Context Info: None
 * 
 * SVGError
 *    See SVGError event.
 * 
 *        * Bubbles: Yes
 *        * Cancelable: No
 *        * Context Info: None
 * 
 * SVGResize
 *    See SVGResize event.
 * 
 *        * Bubbles: Yes
 *        * Cancelable: No
 *        * Context Info: None
 * 
 * SVGScroll
 *    See SVGScroll event.
 * 
 *        * Bubbles: Yes
 *        * Cancelable: No
 *        * Context Info: None
 * @author kitfox
 */
public interface SVGEvent extends Event
{
}