]> gcc.gnu.org Git - gcc.git/blob - libjava/java/awt/AWTEvent.java
natThrowable.cc: Don't use `#pragma implementation'.
[gcc.git] / libjava / java / awt / AWTEvent.java
1 /* Copyright (C) 1999 Red Hat, Inc.
2
3 This file is part of libjava.
4
5 This software is copyrighted work licensed under the terms of the
6 Libjava License. Please consult the file "LIBJAVA_LICENSE" for
7 details. */
8
9 package java.awt;
10
11 /* A very incomplete placeholder. */
12
13 public abstract class AWTEvent extends java.util.EventObject
14 {
15 protected boolean consumed;
16 protected int id;
17
18 public int getID() { return id; }
19
20 public AWTEvent (Object source, int id)
21 {
22 super(source);
23 this.id = id;
24 }
25 }
This page took 0.033768 seconds and 5 git commands to generate.