view rep/REPActionEvent.java @ 98:cc67a5a81535

*** empty log message ***
author pin
date Sat, 22 Dec 2007 10:31:20 +0900
parents b774b87cc2c1
children 291c62984ba0
line wrap: on
line source

package rep;

import java.nio.channels.SocketChannel;

public class REPActionEvent {

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

}