view rep/gui/SessionManagerEventListener.java @ 382:4b87f89b3afd

REP Session Manager (Java version) new structure
author one@firefly.cr.ie.u-ryukyu.ac.jp
date Mon, 10 Nov 2008 22:07:45 +0900
parents
children
line wrap: on
line source

package rep.gui;

import java.io.IOException;


//implemented class is SessionManager.

public interface SessionManagerEventListener {
	
	public void buttonPressed(SessionManagerEvent event);
	public void selectSession(SelectButtonEvent selectButtonEvent) throws IOException;
	public void closeSession(SessionManagerEvent event);
}