CoreDSL2JSON/com.minres.coredsl.json/src/com/minres/coredsl/json/preferences/CoreDSLPreferences.java

15 lines
527 B
Java

package com.minres.coredsl.json.preferences;
import org.eclipse.core.runtime.preferences.IEclipsePreferences;
import org.eclipse.core.runtime.preferences.InstanceScope;
public class CoreDSLPreferences {
public static String getTemplateDir() {
return getPreferenceStore().get(PreferenceConstants.P_TEMPLATE_DIR, System.getProperty(PreferenceConstants.P_TEMPLATE_DIR));
}
public static IEclipsePreferences getPreferenceStore() {
return InstanceScope.INSTANCE.getNode(PreferenceConstants.SCOPE_NAME);
}
}