01: /*
02: * uDig - User Friendly Desktop Internet GIS client
03: * http://udig.refractions.net
04: * (C) 2004, Refractions Research Inc.
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation;
09: * version 2.1 of the License.
10: *
11: * This library 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 GNU
14: * Lesser General Public License for more details.
15: *
16: */
17: package net.refractions.udig.ui;
18:
19: /**
20: * This class defines constants for looking up resources that are available
21: * only within the uDig project.
22: */
23: public interface GraphicConstants {
24:
25: public final static String IMG_ETOOL_DATASOURCE_WIZ = "IMG_ETOOL_DATASOURCE_WIZ"; //$NON-NLS-1$
26: public final static String IMG_ETOOL_DATASOURCE_WIZ_HOVER = "IMG_ETOOL_DATASOURCE_WIZ_HOVER"; //$NON-NLS-1$
27: public final static String IMG_ETOOL_DATASOURCE_WIZ_DISABLED = "IMG_ETOOL_DATASOURCE_WIZ_DISABLED"; //$NON-NLS-1$
28:
29: // wizard images
30: public final static String IMG_WIZBAN_DATASOURCE_WIZ = "IMG_WIZBAN_DATASOURCE_WIZ"; //$NON-NLS-1$
31:
32: }
|