view rep/gui/ConnectButtonEvent.java @ 488:c49a86a7ab8f

termination of new merge command...
author one
date Thu, 21 Oct 2010 23:03:22 +0900
parents 4b87f89b3afd
children
line wrap: on
line source

package rep.gui;

import rep.SessionManager;

public class ConnectButtonEvent implements SessionManagerEvent{

	private String host;

	public ConnectButtonEvent(String host) {
		this.host = host;
	}

	public String getHost() {
		return host;
	}

	public void exec(SessionManager manager) {
		manager.connectSessionManager(host);
	}

}