Mercurial > hg > RemoteEditor > REPSessionManager
annotate rep/SessionManagerGUI.java @ 279:e58695b5118d
*** empty log message ***
author | kono |
---|---|
date | Sat, 27 Sep 2008 14:48:02 +0900 |
parents | 18d6a7140fa3 |
children | a549bd4dadb8 |
rev | line source |
---|---|
0 | 1 package rep; |
2 | |
198 | 3 import java.util.LinkedList; |
5 | 4 |
279 | 5 public interface SessionManagerGUI { |
0 | 6 |
279 | 7 public void update(LinkedList<Session> slist, LinkedList<Editor> elist); |
2 | 8 |
279 | 9 public void addREPActionListener(SessionManager manager); |
8 | 10 |
279 | 11 void invokeLater(Runnable doRun) ; |
1 | 12 } |