summaryrefslogtreecommitdiff
path: root/tutorial/examples/bca/Test.oj
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/examples/bca/Test.oj')
-rw-r--r--tutorial/examples/bca/Test.oj13
1 files changed, 13 insertions, 0 deletions
diff --git a/tutorial/examples/bca/Test.oj b/tutorial/examples/bca/Test.oj
new file mode 100644
index 0000000..2514028
--- /dev/null
+++ b/tutorial/examples/bca/Test.oj
@@ -0,0 +1,13 @@
+package examples.bca;
+
+
+import java.io.PrintStream;
+
+
+public class Test instantiates AutoAdaptationClass
+ implements Writable
+{
+ public void write(PrintStream out) {
+ out.println( "Hello" );
+ }
+}