aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/awt/Rectangle.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/awt/Rectangle.java')
-rw-r--r--libjava/java/awt/Rectangle.java35
1 files changed, 0 insertions, 35 deletions
diff --git a/libjava/java/awt/Rectangle.java b/libjava/java/awt/Rectangle.java
deleted file mode 100644
index d6c9c5e48ab..00000000000
--- a/libjava/java/awt/Rectangle.java
+++ /dev/null
@@ -1,35 +0,0 @@
-/* Copyright (C) 1999 Free Software Foundation
-
- This file is part of libjava.
-
-This software is copyrighted work licensed under the terms of the
-Libjava License. Please consult the file "LIBJAVA_LICENSE" for
-details. */
-
-package java.awt;
-
-/* Status: Quite imcomplete. */
-
-public class Rectangle implements Shape
-{
- public int x;
- public int y;
- public int width;
- public int height;
-
- public Rectangle () { }
-
- public Rectangle (int width, int height)
- { this.width = width; this.height = height; }
-
- public Rectangle (int x, int y, int width, int height)
- {
- this.x = x; this.y = y;
- this.width = width; this.height = height;
- }
-
- public Rectangle getBounds ()
- {
- return new Rectangle (x, y, width, height);
- }
-}