altoslib,altosuilib: Bump library version numbers
[fw/altos] / altoslib / AltosUnits.java
index bc53d4a00ed3af69d4b676679922e6b901b00982..e119448767d024a07a962b73a2afff61bbf4cf66 100644 (file)
@@ -3,7 +3,8 @@
  *
  * This program is free software; you can redistribute it and/or modify
  * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation; version 2 of the License.
+ * the Free Software Foundation; either version 2 of the License, or
+ * (at your option) any later version.
  *
  * This program is distributed in the hope that it will be useful, but
  * WITHOUT ANY WARRANTY; without even the implied warranty of
@@ -15,7 +16,7 @@
  * 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA.
  */
 
-package org.altusmetrum.altoslib_10;
+package org.altusmetrum.altoslib_12;
 
 import java.text.*;
 
@@ -40,6 +41,10 @@ public abstract class AltosUnits {
 
        public abstract double inverse(double v, boolean imperial_units);
 
+       public String string_value(double v, boolean imperial_units) {
+               return new Double(value(v, imperial_units)).toString();
+       }
+
        public abstract String show_units(boolean imperial_units);
 
        public abstract String say_units(boolean imperial_units);
@@ -112,6 +117,10 @@ public abstract class AltosUnits {
                return say_units(v, AltosConvert.imperial_units);
        }
 
+       public String string_value(double v) {
+               return string_value(v, AltosConvert.imperial_units);
+       }
+
        /* Parsing functions. Use the first range of the type */
        public String parse_units(boolean imperial_units) {
                return first_range(imperial_units).show_units;