Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'JCL/converterJclMin/src/java/io/File.java')
-rw-r--r--JCL/converterJclMin/src/java/io/File.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/JCL/converterJclMin/src/java/io/File.java b/JCL/converterJclMin/src/java/io/File.java
new file mode 100644
index 0000000000..e0465e47fa
--- /dev/null
+++ b/JCL/converterJclMin/src/java/io/File.java
@@ -0,0 +1,46 @@
+/*******************************************************************************
+ * Copyright (c) 2000, 2004 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.io;
+
+public class File {
+ public static final char separatorChar = '\\';
+ public static final String separator = "\\"; //$NON-NLS-1$
+
+ public File(String s) {
+ }
+
+ public boolean exists() {
+ return false;
+ }
+
+ public boolean isDirectory() {
+ return false;
+ }
+
+ public String getAbsolutePath() {
+ return null;
+ }
+
+ public boolean mkdirs() {
+ return false;
+ }
+
+ public boolean mkdir() {
+ return false;
+ }
+
+ public String getName() {
+ return null;
+ }
+ public long length() {
+ return 0;
+ }
+}

Back to the top