home *** CD-ROM | disk | FTP | other *** search
- package java.awt.geom;
-
- public class Point2D$Double extends Point2D {
- // $FF: renamed from: x double
- public double field_0;
- // $FF: renamed from: y double
- public double field_1;
-
- public Point2D$Double() {
- }
-
- public Point2D$Double(double var1, double var3) {
- this.field_0 = var1;
- this.field_1 = var3;
- }
-
- public double getX() {
- return this.field_0;
- }
-
- public double getY() {
- return this.field_1;
- }
-
- public void setLocation(double var1, double var3) {
- this.field_0 = var1;
- this.field_1 = var3;
- }
-
- public String toString() {
- return "Point2D.Double[" + this.field_0 + ", " + this.field_1 + "]";
- }
- }
-