01: /*
02: * Constants.java
03: *
04: * Copyright (C) 2002, 2003, 2004, 2005, 2006 Takis Diakoumis
05: *
06: * This program is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU General Public License
08: * as published by the Free Software Foundation; either version 2
09: * of the License, or any later version.
10: *
11: * This program is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14: * GNU General Public License for more details.
15: *
16: * You should have received a copy of the GNU General Public License
17: * along with this program; if not, write to the Free Software
18: * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
19: *
20: */
21:
22: package org.underworldlabs;
23:
24: import java.awt.Color;
25: import java.awt.Dimension;
26: import java.awt.Insets;
27: import javax.swing.UIManager;
28: import org.underworldlabs.swing.plaf.UIUtils;
29:
30: /**
31: *
32: * @author Takis Diakoumis
33: * @version $Revision: 1.5 $
34: * @date $Date: 2006/09/15 13:05:43 $
35: */
36: public interface Constants {
37:
38: /** An empty string */
39: public static final String EMPTY = "";
40:
41: public static final String NEW_LINE_STRING = "\n";
42: public static final String QUOTE_STRING = "'";
43: public static final char QUOTE_CHAR = '\'';
44: public static final char NEW_LINE_CHAR = '\n';
45: public static final char TAB_CHAR = '\t';
46: public static final char COMMA_CHAR = ',';
47:
48: // tool tip html tags
49: public static final String TABLE_TAG_START = "<table border='0' cellspacing='0' cellpadding='2'>";
50:
51: public static final String TABLE_TAG_END = "</table>";
52:
53: public static final Insets EMPTY_INSETS = new Insets(0, 0, 0, 0);
54:
55: public static final Dimension FORM_BUTTON_SIZE = new Dimension(100,
56: 25);
57:
58: }
|