summaryrefslogtreecommitdiff
path: root/sources/scala/runtime/BoxedNumber.java
diff options
context:
space:
mode:
Diffstat (limited to 'sources/scala/runtime/BoxedNumber.java')
-rwxr-xr-xsources/scala/runtime/BoxedNumber.java21
1 files changed, 21 insertions, 0 deletions
diff --git a/sources/scala/runtime/BoxedNumber.java b/sources/scala/runtime/BoxedNumber.java
new file mode 100755
index 0000000000..471d52516d
--- /dev/null
+++ b/sources/scala/runtime/BoxedNumber.java
@@ -0,0 +1,21 @@
+/* __ *\
+** ________ ___ / / ___ Scala API **
+** / __/ __// _ | / / / _ | (c) 2002, LAMP/EPFL **
+** __\ \/ /__/ __ |/ /__/ __ | **
+** /____/\___/_/ |_/____/_/ | | **
+** |/ **
+\* */
+
+// $OldId: RunTime.java,v 1.13 2002/11/19 12:01:40 paltherr Exp $
+// $Id$
+package scala.runtime;
+
+public abstract class BoxedNumber {
+ public abstract byte byteValue();
+ public abstract short shortValue();
+ public abstract char charValue();
+ public abstract int intValue();
+ public abstract long longValue();
+ public abstract float floatValue();
+ public abstract double doubleValue();
+}