summaryrefslogtreecommitdiff
path: root/tutorial/examples/print/Test.java
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/examples/print/Test.java')
-rw-r--r--tutorial/examples/print/Test.java119
1 files changed, 119 insertions, 0 deletions
diff --git a/tutorial/examples/print/Test.java b/tutorial/examples/print/Test.java
new file mode 100644
index 0000000..77238e9
--- /dev/null
+++ b/tutorial/examples/print/Test.java
@@ -0,0 +1,119 @@
+/*
+ * This code was generated by ojc.
+ */
+/*
+ * Test.java
+ *
+ * comments here.
+ *
+ * @author Michiaki Tatsubori
+ * @version %VERSION% %DATE%
+ * @see java.lang.Object
+ *
+ * COPYRIGHT 1998 by Michiaki Tatsubori, ALL RIGHTS RESERVED.
+ */
+package examples.print;
+
+import java.awt.Panel;
+import java.util.*;
+import java.io.PrintStream;
+
+/**
+ * The class <code>Test</code>
+ * <p>
+ * For example
+ * <pre>
+ * </pre>
+ * <p>
+ *
+ * @author Michiaki Tatsubori
+ * @version 1.0
+ * @since $Id: Test.java,v 1.2 2003/02/19 02:55:01 tatsubori Exp $
+ * @see java.lang.Object
+ */
+public class Test extends Panel {
+
+ private int iii = 0;
+
+ private Test n = null;
+
+ private String str = "string";
+
+ public Test() {
+ super();
+ }
+
+ /**
+ * @param
+ * @return
+ * @exception
+ * @see java.lang.Object
+ */
+ public static void main(String[] argv) {
+ PrintStream out = System.out;
+ PrintStream error = java.lang.System.err;
+ out.println("Hello" + " " + "World");
+ Test n = new Test();
+ java.lang.System.err.println("done");
+ }
+
+ public void hoge() {
+ Local l = new Local();
+ System.out.println(l.foo);
+ System.out.println(l.bar.str);
+ }
+
+ public Test(String str) {
+ this.str = str;
+ n = null;
+ }
+
+ public int foo(int iii) {
+ switch (iii) {
+ case 0 :
+ return 0;
+
+ case 1 :
+ {
+ String str = null;
+ }
+
+ case 2 :
+ case 3 :
+ case 4 :
+ {
+ String ppp = null;
+ }
+
+ default :
+
+ }
+ return iii;
+ }
+
+ public String toString() {
+ if (n == null) {
+ return str;
+ }
+ return str + n;
+ }
+
+}
+
+class Local {
+
+ String foo = null;
+
+ Local2 bar = new Local2();
+
+ public final String getFoo(Integer i) {
+ return foo;
+ }
+
+}
+
+class Local2 {
+
+ String str = "" + "TEST";
+
+}