01: package org.acm.seguin.completer.popup;
02:
03: import org.gjt.sp.jedit.jEdit;
04:
05: import org.acm.seguin.ide.jedit.Navigator.NavigatorLogger;
06:
07: import org.acm.seguin.completer.Completer;
08:
09: public class SuicidalPopupTest {
10:
11: static final NavigatorLogger logger = Completer
12: .getLogger(SuicidalPopupTest.class);
13:
14: public SuicidalPopupTest() {
15:
16: SuicidalMsgPopup sp = new SuicidalMsgPopup(jEdit
17: .getActiveView(),
18:
19: "The temp message",
20:
21: 1000 * 5);
22:
23: }
24:
25: public static void main(String[] args) {
26:
27: try {
28:
29: } catch (Throwable t) {
30:
31: t.printStackTrace();
32:
33: }
34:
35: }
36:
37: }
|