* All files: Updated copyright to reflect Cygnus purchase.
[official-gcc.git] / libjava / java / awt / AWTEvent.java
blob0a4d758e71e9d7e4ee23193ccead609ce18a3cef
1 /* Copyright (C) 1999 Red Hat, Inc.
3 This file is part of libjava.
5 This software is copyrighted work licensed under the terms of the
6 Libjava License. Please consult the file "LIBJAVA_LICENSE" for
7 details. */
9 package java.awt;
11 /* A very incomplete placeholder. */
13 public abstract class AWTEvent extends java.util.EventObject
15 protected boolean consumed;
16 protected int id;
18 public int getID() { return id; }
20 public AWTEvent (Object source, int id)
22 super(source);
23 this.id = id;