KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > objectweb > dolphin > preferences > PreferenceConstants


1 /*
2 * Copyright (C) 2005 Bourgeon Jérôme, Macherel Bruno
3 *
4 * This file is part of Dolphin
5 *
6 * Dolphin : An open source J2EE Deployment Tool JSR-88 compliant
7 * Contact: ishmael-dev@objectweb.org
8 *
9 * Dolphin is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU Lesser General Public
11 * License as published by the Free Software Foundation; either
12 * version 2.1 of the License, or any later version.
13 *
14 * Dolphin is distributed in the hope that it will be useful,
15 * but WITHOUT ANY WARRANTY; without even the implied warranty of
16 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
17 * Lesser General Public License for more details.
18 *
19 * You should have received a copy of the GNU Lesser General Public
20 * License along with Dolphin; if not, write to the Free Software
21 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307
22 * USA
23 */

24 package org.objectweb.dolphin.preferences;
25
26 /**
27  * Constant definitions for plug-in preferences
28  */

29 public class PreferenceConstants {
30
31     public static final String JavaDoc P_PATH = "pathPreference";
32
33     public static final String JavaDoc P_BOOLEAN = "booleanPreference";
34
35     public static final String JavaDoc P_CHOICE = "choicePreference";
36
37     public static final String JavaDoc P_STRING = "stringPreference";
38
39     public static final String JavaDoc P_WORKSPACE = "serverWorkspace";
40
41 }
42
Popular Tags