alice.tuprolog.event.ReadEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tuprolog Show documentation
Show all versions of tuprolog Show documentation
Light-weight Prolog system for Internet applications and infrastructures
The newest version!
package alice.tuprolog.event;
import java.util.EventObject;
import alice.tuprolog.lib.UserContextInputStream;
public class ReadEvent extends EventObject {
/**
*
*/
private static final long serialVersionUID = 1L;
private alice.tuprolog.lib.UserContextInputStream stream;
public ReadEvent(UserContextInputStream str) {
super(str);
this.stream = str;
}
public UserContextInputStream getStream()
{
return this.stream;
}
}