Docjar: A Java Source and Docuemnt Enginecom.*    java.*    javax.*    org.*    all    new    plug-in

Quick Search    Search Deep

Source code: com/voytechs/html/event/HtmlEvent.java


1   /*
2    * File: HtmlEvent.java
3    * Auth: Mark Bednarczyk
4    * Date: DATE
5    *   Id: $Id: HtmlEvent.java,v 1.1.1.1 2002/01/23 23:52:46 voytechs Exp $
6    ********************************************
7    * $Log: HtmlEvent.java,v $
8    * Revision 1.1.1.1  2002/01/23 23:52:46  voytechs
9    * Initial public release, BETA 1.0 - voytechs
10   *
11   */
12  package com.voytechs.html.event;
13  
14  import com.voytechs.html.event.*;
15  
16  import java.lang.*;
17  import java.util.*;
18  
19  /**
20   * 
21   */
22  public class HtmlEvent 
23    extends Event {
24  
25    /* Internal attributes */
26  
27    public static final int EVENT_SUBMIT_MASK    = 0x0001;
28    public static final int EVENT_PASSWORD_MASK      = 0x0002;
29    public static final int EVENT_TEXTAREA_MASK  = 0x0004;
30    public static final int EVENT_TEXTFIELD_MASK = 0x0008;
31    public static final int EVENT_LIST_MASK      = 0x0010;
32    public static final int EVENT_CHECKED_MASK    = 0x0020;
33    public static final int EVENT_RADIO_MASK      = 0x0040;
34    public static final int EVENT_HIDDEN_MASK    = 0x0080;
35    public static final int EVENT_LINK_MASK    = 0x0100;
36    public static final int EVENT_DEFAULT_MASK    = 0x8000;
37  
38    /**
39     *
40     * @param
41     * @exception
42     */
43    public HtmlEvent(int eventType, int eventId) {
44      super(eventType, eventId);
45    }
46  
47    /**
48     * Test function for HtmlEvent
49     * @param args command line arguments
50     */
51    public static void main(String [] args) {
52    }
53  
54  } /* END OF: HtmlEvent */