summaryrefslogtreecommitdiff
path: root/test/files/jvm/JavaInteraction.scala
diff options
context:
space:
mode:
Diffstat (limited to 'test/files/jvm/JavaInteraction.scala')
-rw-r--r--test/files/jvm/JavaInteraction.scala24
1 files changed, 0 insertions, 24 deletions
diff --git a/test/files/jvm/JavaInteraction.scala b/test/files/jvm/JavaInteraction.scala
deleted file mode 100644
index 70eacebaf8..0000000000
--- a/test/files/jvm/JavaInteraction.scala
+++ /dev/null
@@ -1,24 +0,0 @@
-//############################################################################
-// Test Java interaction
-//############################################################################
-// $Id$
-
-import java.awt.Color;
-import java.awt.Point;
-
-class ColoredPoint(x: Int, y: Int, c_ : Color) extends Point(x, y) {
- val c: Color = c_;
- def getC(): Color = c;
-}
-
-object Test {
- def main(args: Array[String]): Unit = {
- val p = new ColoredPoint(5,7,Color.RED);
- System.out.println("p.x = " + p.x);
- System.out.println("p.c = " + p.c);
- System.out.println("p.getX() = " + p.getX());
- System.out.println("p.getC() = " + p.getC());
- }
-}
-
-//############################################################################