01: package net.refractions.udig.render.wms.basic.preferences;
02:
03: /**
04: * Constant definitions for plug-in preferences
05: */
06: public class PreferenceConstants {
07:
08: /**
09: * Preference to store the order of preference for image types
10: */
11: public static final String P_IMAGE_TYPE_ORDER = "imageTypeOrder"; //$NON-NLS-1$
12: /**
13: * Boolean preference to use the default image type order
14: */
15: public static final String P_USE_DEFAULT_ORDER = "useDefaultOrder"; //$NON-NLS-1$
16:
17: }
|