view rep/REPActionEvent.java @ 127:b0179c726bd8

*** empty log message ***
author kono
date Wed, 27 Aug 2008 17:59:25 +0900
parents 291c62984ba0
children 5feb0abed370
line wrap: on
line source

package rep;

import java.nio.channels.SocketChannel;

public class REPActionEvent {

	private REPSocketChannel editorChannel;
	private int sid;
	private int eid;

	public REPActionEvent(EditorPlus plus, SessionPlus plus2) {
		// TODO Auto-generated constructor stub
		this.editorChannel = plus.getChannel();
		this.eid = plus.getEID();
		this.sid = plus2.getSID();
	}

	public REPSocketChannel getEditorChannel() {
		// TODO Auto-generated method stub
		return editorChannel;
	}

	public int getSID() {
		// TODO Auto-generated method stub
		return sid;
	}

	public int getEID() {
		// TODO Auto-generated method stub
		return eid;
	}

}