01: package net.refractions.udig.project.ui.preferences;
02:
03: public interface PreferenceConstants {
04:
05: /**
06: * Indicates whether previously open maps should be re-opened on startup.
07: * Defaults to true.
08: */
09: public final static String P_OPEN_MAPS_ON_STARTUP = "openMapsOnStartup"; //$NON-NLS-1$
10:
11: }
|