* Makefile.in (PREPROCESSOR_DEFINES): New macro.
[official-gcc.git] / libjava / java / awt / Event.java
bloba5991f25e3ad0fb0d5076ef7d8ce25942d833df1
1 /* Copyright (C) 1999 Cygnus Solutions
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 class Event
15 public Event evt;
16 public Object arg;
17 public int id;
18 public Object target;
20 public Event (Object target, int id, Object arg)
22 this.id = id;
23 this.target = target;
24 this.arg = arg;