Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JCL/converterJclMin1.5/src/java/lang/Long.java')
-rw-r--r--JCL/converterJclMin1.5/src/java/lang/Long.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/JCL/converterJclMin1.5/src/java/lang/Long.java b/JCL/converterJclMin1.5/src/java/lang/Long.java
new file mode 100644
index 0000000000..f5f7357ac1
--- /dev/null
+++ b/JCL/converterJclMin1.5/src/java/lang/Long.java
@@ -0,0 +1,46 @@
+/*******************************************************************************
+ * Copyright (c) 2005 IBM Corporation and others.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ * IBM Corporation - initial API and implementation
+ *******************************************************************************/
+package java.lang;
+
+public class Long extends Number implements Comparable<Long> {
+ private static final long serialVersionUID = 7046418566711138668L;
+ public static final long MIN_VALUE = 0x8000000000000000L;
+ public static final long MAX_VALUE = 0x7fffffffffffffffL;
+ public Long(long l) {
+ }
+ /* (non-Javadoc)
+ * @see java.lang.Number#doubleValue()
+ */
+ public double doubleValue() {
+ return 0;
+ }
+ /* (non-Javadoc)
+ * @see java.lang.Number#floatValue()
+ */
+ public float floatValue() {
+ return 0;
+ }
+ /* (non-Javadoc)
+ * @see java.lang.Number#intValue()
+ */
+ public int intValue() {
+ return 0;
+ }
+ /* (non-Javadoc)
+ * @see java.lang.Number#longValue()
+ */
+ public long longValue() {
+ return 0;
+ }
+ public int compareTo(Long l) {
+ return 0;
+ }
+}

Back to the top