Restructured the Preferences system
[Mograsim.git] / plugins / net.mograsim.plugin.core / src / net / mograsim / plugin / preferences / PluginPreferences.java
diff --git a/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/preferences/PluginPreferences.java b/plugins/net.mograsim.plugin.core/src/net/mograsim/plugin/preferences/PluginPreferences.java
new file mode 100755 (executable)
index 0000000..3378e66
--- /dev/null
@@ -0,0 +1,13 @@
+package net.mograsim.plugin.preferences;
+
+import net.mograsim.preferences.Preferences;
+
+public interface PluginPreferences extends Preferences
+{
+       public static final String PREFIX = "net.mograsim.plugin.core.";
+
+       public static final String MAX_MEMORY_CHANGE_INTERVAL = "net.mograsim.plugin.core.maxmemchangeinterval";
+       public static final String SIMULATION_SPEED_PRECISION = "net.mograsim.plugin.core.simspeedprecision";
+       public static final String MPM_EDITOR_BITS_AS_COLUMN_NAME = "net.mograsim.plugin.core.editors.mpm.bitsascolumnname";
+
+}