summaryrefslogtreecommitdiff
path: root/tutorial/examples/bca/Writable.java
diff options
context:
space:
mode:
authorKenny Ballou <kballou@devnulllabs.io>2018-11-19 22:59:50 -0700
committerKenny Ballou <kballou@devnulllabs.io>2018-11-19 22:59:50 -0700
commitea3e1b949dcbdc09518f17eee0bcf21d41d76896 (patch)
tree7ec7a7fb4df67815a9b7bb0e4d95d67c4050e2a2 /tutorial/examples/bca/Writable.java
downloadopenjava-ea3e1b949dcbdc09518f17eee0bcf21d41d76896.tar.gz
openjava-ea3e1b949dcbdc09518f17eee0bcf21d41d76896.tar.xz
OJ (aka OpenJava) modernization/mirroring
Signed-off-by: Kenny Ballou <kballou@devnulllabs.io>
Diffstat (limited to 'tutorial/examples/bca/Writable.java')
-rw-r--r--tutorial/examples/bca/Writable.java10
1 files changed, 10 insertions, 0 deletions
diff --git a/tutorial/examples/bca/Writable.java b/tutorial/examples/bca/Writable.java
new file mode 100644
index 0000000..f8df297
--- /dev/null
+++ b/tutorial/examples/bca/Writable.java
@@ -0,0 +1,10 @@
+package examples.bca;
+
+
+import java.io.PrintStream;
+
+
+public interface Writable
+{
+ public void write(PrintStream out);
+}