home *** CD-ROM | disk | FTP | other *** search
Java Source | 2000-05-04 | 538 b | 31 lines |
- // (C) Copyright 1995 - 1999 Microsoft Corporation. All rights reserved.
- //=========================================================================
- // A simple Java console app that can be run using JVIEW.
- //=========================================================================
-
-
-
- import java.awt.Point;
-
-
-
-
-
-
- class Plotter
- {
- public static void main(String[] args) {
-
- IPlotter plotter = (IPlotter) new CPlotter();
-
- plotter.DrawLine(new Point(1,2), new Point(3,4));
-
-
- }
-
-
-
-
-
- }
-