01: /*
02: * Copyright (c) 2000, Jacob Smullyan.
03: *
04: * This is part of SkunkDAV, a WebDAV client. See http://skunkdav.sourceforge.net/
05: * for the latest version.
06: *
07: * SkunkDAV is free software; you can redistribute it and/or
08: * modify it under the terms of the GNU General Public License as published
09: * by the Free Software Foundation; either version 2, or (at your option)
10: * any later version.
11: *
12: * SkunkDAV is distributed in the hope that it will be useful,
13: * but WITHOUT ANY WARRANTY; without even the implied warranty of
14: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
15: * General Public License for more details.
16: *
17: * You should have received a copy of the GNU General Public License
18: * along with SkunkDAV; see the file COPYING. If not, write to the Free
19: * Software Foundation, 59 Temple Place - Suite 330, Boston, MA
20: * 02111-1307, USA.
21: */
22:
23: package org.skunk.dav.client.gui;
24:
25: public interface StateProperties {
26: String EDITOR_IN_FOCUS = "editorInFocus";
27: String CONNECTED = "connected";
28: String EDITOR_IN_FOCUS_AND_DIRTY = "editorInFocusAndDirty";
29: String FILE_BEING_EDITED = "fileBeingEdited";
30: String RELOAD = "reload";
31: String CARET_POSITION = "caretPosition";
32: String BUSY = "busy";
33: }
34:
35: /* $Log: StateProperties.java,v $
36: /* Revision 1.7 2000/12/19 22:36:05 smulloni
37: /* adjustments to preamble.
38: /*
39: /* Revision 1.6 2000/12/04 23:51:16 smulloni
40: /* added ImageViewer; fixed word in SimpleTextEditor
41: /*
42: /* Revision 1.5 2000/12/03 23:53:26 smulloni
43: /* added license and copyright preamble to java files.
44: /*
45: /* Revision 1.4 2000/11/28 00:01:39 smullyan
46: /* added a status bar/minibuffer, with a location field showing the current line and
47: /* column number (for the SimpleTextEditor and kin only).
48: /*
49: /* Revision 1.3 2000/11/23 04:37:32 smullyan
50: /* editor and explorer now synch their files using the StateMonitor, which has
51: /* been improved significantly
52: /*
53: /* Revision 1.2 2000/11/22 00:11:28 smullyan
54: /* editor now locks and unlocks, more or less appropriately.
55: /* */
|