File: UIEvent.xml

package info (click to toggle)
gmetadom 0.2.2-3
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,396 kB
  • ctags: 1,195
  • sloc: sh: 8,353; xml: 3,772; cpp: 3,113; ansic: 2,660; ml: 932; makefile: 930
file content (65 lines) | stat: -rw-r--r-- 2,489 bytes parent folder | download | duplicates (9)
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
<?xml version="1.0" encoding="utf-8"?>
<!-- $Id: UIEvent.xml,v 1.1.1.1 2001/11/26 22:34:23 lpadovan Exp $ -->
<!-- UIEvent interface -->

  <interface name="UIEvent" inherits="Event" id="Events-UIEvent"
    since="DOM Level 2">
    <descr>
    <p>The <code>UIEvent</code> interface provides specific contextual 
      information associated with User Interface events.</p>
    </descr>

    <attribute type="views::AbstractView" name="view" readonly="yes"
    id="Events-UIEvent-view">
     <descr>
     <p>The <code>view</code> attribute identifies the
	<code>AbstractView</code> from which the event was generated.</p>
     </descr>
    </attribute>

  <attribute id="Events-UIEvent-detail" name="detail" type="long" readonly="yes">
    <descr><p>Specifies some detail information about the <code>Event</code>,
	depending on the type of event.</p>
    </descr>
  </attribute>

    <method name="initUIEvent" id="Events-Event-initUIEvent">
      <descr>
      <p>The <code>initUIEvent</code> method is used to initialize the value of a <code>UIEvent</code> created through
      the <code>DocumentEvent</code> interface.  This method may only be called before the <code>UIEvent</code> has
      been dispatched via the <code>dispatchEvent</code> method, though it may be called multiple times during that
      phase if necessary.  If called multiple times, the final invocation takes precedence.</p>
      </descr>
      <parameters>
        <param name="typeArg" type="DOMString" attr="in">
          <descr><p>Specifies the event type.</p>
          </descr>
        </param>
        <param name="canBubbleArg" type="boolean" attr="in">
          <descr><p>Specifies whether or not the event can bubble.</p>
          </descr>
        </param>
        <param name="cancelableArg" type="boolean" attr="in">
          <descr><p>Specifies whether or not the event's default 
          action can be prevented.</p>
          </descr>
        </param>
        <param name="viewArg" type="views::AbstractView" attr="in">
          <descr><p>Specifies the <code>Event</code>'s
	    <code>AbstractView</code>.</p>
          </descr>
        </param>
        <param name="detailArg" type="long" attr="in">
          <descr><p>Specifies the <code>Event</code>'s detail.</p>
          </descr>
        </param>
      </parameters>
      <returns type="void">
       <descr><p></p></descr>
      </returns>
      <raises>
      <!-- No exceptions -->
      </raises>
    </method>

  </interface>