home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 14 / IOPROG_14.ISO / soft / sdkjava / sdkjava.exe / SDKJava.cab / Samples / CustDoc / plotter / Plotter.java < prev    next >
Encoding:
Java Source  |  1998-03-05  |  532 b   |  31 lines

  1. // Copyright (c) 1998  Microsoft Corporation.  All rights reserved.
  2. //=========================================================================
  3. // A simple Java console app that can be run using JVIEW. 
  4. //=========================================================================
  5.  
  6.  
  7.  
  8. import java.awt.Point;
  9.  
  10.  
  11.  
  12.  
  13.  
  14.  
  15. class Plotter
  16. {
  17.     public static void main(String[] args) {
  18.  
  19.         IPlotter plotter = (IPlotter) new CPlotter();
  20.  
  21.         plotter.DrawLine(new Point(1,2), new Point(3,4));
  22.  
  23.  
  24.      }
  25.  
  26.  
  27.  
  28.  
  29.  
  30. }
  31.