Update java library version numbers
[fw/altos] / altoslib / AltosPreferencesBackend.java
index 2eb29702c322a221e87bcfce959828d7ce6dd12a..9f2e8f7c9541bf0945fd9291ca37701181fedc44 100644 (file)
@@ -15,7 +15,7 @@
  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
  */
 
-package org.altusmetrum.altoslib_3;
+package org.altusmetrum.altoslib_10;
 
 import java.io.File;
 
@@ -33,6 +33,9 @@ public interface AltosPreferencesBackend {
        public boolean getBoolean(String key, boolean def);
        public void    putBoolean(String key, boolean value);
 
+       public byte[]  getBytes(String key, byte[] def);
+       public void    putBytes(String key, byte[] value);
+
        public boolean nodeExists(String key);
        public AltosPreferencesBackend node(String key);
 
@@ -42,4 +45,6 @@ public interface AltosPreferencesBackend {
        public void    flush();
 
        public File homeDirectory();
+
+       public void debug(String format, Object ... arguments);
 }