summaryrefslogtreecommitdiff
path: root/tutorial/examples/multimeta/MyPerson.oj
diff options
context:
space:
mode:
Diffstat (limited to 'tutorial/examples/multimeta/MyPerson.oj')
-rw-r--r--tutorial/examples/multimeta/MyPerson.oj15
1 files changed, 15 insertions, 0 deletions
diff --git a/tutorial/examples/multimeta/MyPerson.oj b/tutorial/examples/multimeta/MyPerson.oj
new file mode 100644
index 0000000..2fccfa0
--- /dev/null
+++ b/tutorial/examples/multimeta/MyPerson.oj
@@ -0,0 +1,15 @@
+package examples.multimeta;
+
+
+import examples.verbose.VerboseClass;
+import examples.capsule.CapsuleClass;
+
+
+public class MyPerson instantiates CombinedClass
+ extends Object implements Runnable
+ obeys VerboseClass, CapsuleClass
+{
+ public String name;
+ public int age;
+ public void run() {}
+}