01: /*
02: * Constants.java
03: *
04: * Created on February 23, 2007, 4:37 PM
05: *
06: * To change this template, choose Tools | Template Manager
07: * and open the template in the editor.
08: */
09:
10: package org.netbeans.modules.compapp.casaeditor;
11:
12: /**
13: *
14: * @author rdara
15: */
16: public interface Constants {
17:
18: String EMPTY_STRING = ""; // NOI18N
19: String SPACE = " "; // NOI18N
20: String COMMA = ","; // NOI18N
21: String COLON_STRING = ":"; // NOI18N
22: String true_STRING = "true"; // NOI18N
23: String false_STRING = "false"; // NOI18N
24: String FORWARD_SLASH = "/"; // NOI18N
25: String BACKWARD_SLASH = "\\"; // NOI18N
26: String EQUAL_TO = "="; // NOI18N
27: String DOUBLE_QUOTE = "\""; // NOI18N
28: String SQUARE_BRACKET_CLOSE = "]"; // NOI18N
29: String SQUARE_BRACKET_OPEN = "]"; // NOI18N
30: String PERIOD = "."; // NOI18N
31: String STRING_EXTENSION = "..."; // NOI18N
32: String CLOSE = "Close"; // NOI18N
33: int TOOLTIP_INITIAL_DELAY = 0;
34: }
|