You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
public class NewEvent extends Object{ public int what; // event code public int message; // event message public long when; // milliseconds since startup public int x; // x mouse location public int y; // y mouse location public int modifiers; // modifier flags public NewEvent(int whatArg) { super(); this.x = 0; this.y = 0; this.what = whatArg; } }