1 | package org.gjt.sp.jedit.msg;↵ | | 1 | package org.gjt.sp.jedit.msg;↵
|
|
2 | import org.gjt.sp.jedit.EBComponent;↵ | | 2 | import org.gjt.sp.jedit.EBComponent;↵
|
3 | import org.gjt.sp.jedit.EBMessage;↵ | | 3 | import org.gjt.sp.jedit.EBMessage;↵
|
|
4 | /**↵ | | 4 | /**↵
|
5 | * Message sent just before jEdit exits↵ | | 5 | * Message sent after jEdit has finished starting up, but before the initial↵
|
6 | .↵ | | 6 | * view is created.↵
|
7 | * @author Slava Pestov↵ | | 7 | * @author Slava Pestov↵
|
8 | * @version $Id: EditorExiting.java,v 1.2 2002/05/14 07:55:48 spestov Exp $↵ | | 8 | * @version $Id: EditorStarted.java,v 1.2 2002/05/14 07:55:48 spestov Exp $↵
|
9 | *↵ | | 9 | *↵
|
10 | * @since jEdit 2.3pre2↵ | | 10 | * @since jEdit 2.3pre2↵
|
11 | */↵ | | 11 | */↵
|
12 | public class EditorExiting extends EBMessage↵ | | 12 | public class EditorStarted extends EBMessage↵
|
13 | {↵ | | 13 | {↵
|
14 | /**↵ | | 14 | /**↵
|
15 | * Creates a new editor exiting message.↵ | | 15 | * Creates a new editor started message.↵
|
16 | * @param source The message source↵ | | 16 | * @param source The message source↵
|
17 | */↵ | | 17 | */↵
|
18 | public EditorExiting(EBComponent source)↵ | | 18 | public EditorStarted(EBComponent source)↵
|
19 | {↵ | | 19 | {↵
|
20 | super(source);↵ | | 20 | super(source);↵
|
21 | }↵ | | 21 | }↵
|
22 | } | | 22 | }
|