
sun.net.httpserver.Event Maven / Gradle / Ivy
The newest version!
/*
* @(#)Event.java 1.4 07/01/02
*
* Copyright 2007 Sun Microsystems, Inc. All rights reserved.
* SUN PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*/
package sun.net.httpserver;
import com.sun.net.httpserver.*;
import com.sun.net.httpserver.spi.*;
class Event {
ExchangeImpl exchange;
protected Event (ExchangeImpl t) {
this.exchange = t;
}
}
class WriteFinishedEvent extends Event {
WriteFinishedEvent (ExchangeImpl t) {
super (t);
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy