Mercurial > hg > RemoteEditor > REPSessionManager
changeset 134:4ad47fad8fa4
*** empty log message ***
author | kent |
---|---|
date | Wed, 27 Aug 2008 18:31:22 +0900 |
parents | 8dce4348966c |
children | 0bd4ffc33bdb |
files | rep/RPanel.java |
diffstat | 1 files changed, 5 insertions(+), 2 deletions(-) [+] |
line wrap: on
line diff
--- a/rep/RPanel.java Wed Aug 27 18:27:12 2008 +0900 +++ b/rep/RPanel.java Wed Aug 27 18:31:22 2008 +0900 @@ -19,6 +19,9 @@ import javax.swing.JTextArea; import javax.swing.JTextField; import javax.swing.table.DefaultTableModel; + +import rep.channel.REPSocketChannel; + import java.util.*; public class RPanel extends JPanel implements ActionListener { @@ -147,7 +150,7 @@ undoListener = listener3; } - public void setComboEditor(int eid, SocketChannel channel) { + public void setComboEditor(int eid, REPSocketChannel<REPCommand> channel) { //comboEditor.addItem("Editor:"+eid); comboEditor.addItem(new EditorPlus(eid, channel)); } @@ -160,7 +163,7 @@ comboSession.addItem(new SessionPlus(sessionID, string)); } - public void setTableEditor(int eid, SocketChannel channel) { + public void setTableEditor(int eid, REPSocketChannel<REPCommand> channel) { //comboEditor.addItem("Editor:"+eid); EditorPlus ep = new EditorPlus(eid, channel);