home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / java / awt / geom / Point2D$Double.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  708 b   |  34 lines

  1. package java.awt.geom;
  2.  
  3. public class Point2D$Double extends Point2D {
  4.    // $FF: renamed from: x double
  5.    public double field_0;
  6.    // $FF: renamed from: y double
  7.    public double field_1;
  8.  
  9.    public Point2D$Double() {
  10.    }
  11.  
  12.    public Point2D$Double(double var1, double var3) {
  13.       this.field_0 = var1;
  14.       this.field_1 = var3;
  15.    }
  16.  
  17.    public double getX() {
  18.       return this.field_0;
  19.    }
  20.  
  21.    public double getY() {
  22.       return this.field_1;
  23.    }
  24.  
  25.    public void setLocation(double var1, double var3) {
  26.       this.field_0 = var1;
  27.       this.field_1 = var3;
  28.    }
  29.  
  30.    public String toString() {
  31.       return "Point2D.Double[" + this.field_0 + ", " + this.field_1 + "]";
  32.    }
  33. }
  34.