All Downloads are FREE. Search and download functionalities are using the official Maven repository.

alice.tuprolog.event.ReadEvent Maven / Gradle / Ivy

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;
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy