17 lines
675 B
Java
17 lines
675 B
Java
package afryca.lpr.preferences;
|
|
|
|
/**
|
|
* Preference constants
|
|
*
|
|
* @author Sinbad²
|
|
* @version 3.0
|
|
*/
|
|
public interface PreferenceConstants {
|
|
public static final String NODEPATH = "afryca.lpr"; //$NON-NLS-1$
|
|
public static final String RANDOM_LPR_FUNCTION_KEY = "random.lpr.function"; //$NON-NLS-1$
|
|
public static final String COMPLETE_LPR_FUNCTION_KEY = "complete.lpr.function"; //$NON-NLS-1$
|
|
public static final String AGGREGATE_LPR_FUNCTION_KEY = "aggregation.lpr.function"; //$NON-NLS-1$
|
|
public static final String CHART_FUNCTION_KEY="gdmp.chart.functions.lpr"; //$NON-NLS-1$
|
|
public static final String MODULE_BINDINGS_KEY = "module.bindings.lpr"; //$NON-NLS-1$
|
|
}
|