summaryrefslogtreecommitdiff
path: root/java/gjt/rubberband/RubberbandLine.java
diff options
context:
space:
mode:
authornobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-27 12:15:59 +0000
committernobody <nobody@ae88bc3d-4319-0410-8dbf-d08b4c9d3795>1998-06-27 12:15:59 +0000
commit7bc88969ae34bd5d15c2f2654f01857a93e4551a (patch)
treec3b163127f0797a7a1cf1b13d3532ef27badee46 /java/gjt/rubberband/RubberbandLine.java
parent510781dfc745dba14b8be347d07e93beb52279ec (diff)
downloadATCD-TAO-0_1_34.tar.gz
This commit was manufactured by cvs2svn to create tag 'TAO-0_1_34'.TAO-0_1_34
Diffstat (limited to 'java/gjt/rubberband/RubberbandLine.java')
-rw-r--r--java/gjt/rubberband/RubberbandLine.java25
1 files changed, 0 insertions, 25 deletions
diff --git a/java/gjt/rubberband/RubberbandLine.java b/java/gjt/rubberband/RubberbandLine.java
deleted file mode 100644
index 95daafa32a6..00000000000
--- a/java/gjt/rubberband/RubberbandLine.java
+++ /dev/null
@@ -1,25 +0,0 @@
-package gjt.rubberband;
-
-import java.awt.Component;
-import java.awt.Graphics;
-
-/**
- * A Rubberband that does lines.
- *
- * @version 1.0, 12/27/95
- * @author David Geary
- * @see Rubberband
- * @see gjt.test.RubberbandTest
- */
-public class RubberbandLine extends Rubberband {
- public RubberbandLine(Component component) {
- super(component);
- }
- public void drawLast(Graphics graphics) {
- graphics.drawLine(anchor.x, anchor.y, last.x, last.y);
- }
- public void drawNext(Graphics graphics) {
- graphics.drawLine(anchor.x, anchor.y,
- stretched.x, stretched.y);
- }
-}