//???AWT
/*
public WindowEvent(Window source, int id) {
this(source, id, null);
}
public WindowEvent(Window source, int id, Window opposite) {
this(source, id, opposite, Frame.NORMAL, Frame.NORMAL);
}
public WindowEvent(Window source, int id, int oldState, int newState) {
this(source, id, null, oldState, newState);
}
public WindowEvent(Window source, int id, Window opposite,
int oldState, int newState) {
super(source, id);
oppositeWindow = opposite;
this.oldState = oldState;
this.newState = newState;
}
*/
//???AWT: Fake constructor
super(null, 0);