diff options
author | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-30 13:31:33 +0000 |
---|---|---|
committer | mkoch <mkoch@138bc75d-0d04-0410-961f-82ee72b054a4> | 2004-05-30 13:31:33 +0000 |
commit | d94d182318f0e9c90a13276cc616463ade5f1c48 (patch) | |
tree | 05abb5eb31580e7f805386fbad8d2121c586aeee /libjava/java/awt/geom | |
parent | a0a040160e6587688c585243fc9558a7195ab5d7 (diff) | |
download | ppe42-gcc-d94d182318f0e9c90a13276cc616463ade5f1c48.tar.gz ppe42-gcc-d94d182318f0e9c90a13276cc616463ade5f1c48.zip |
2004-05-30 Michael Koch <konqueror@gmx.de>
* gnu/java/math/MPN.java,
java/awt/geom/Arc2D.java:
Fixed javadocs all over.
git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@82446 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'libjava/java/awt/geom')
-rw-r--r-- | libjava/java/awt/geom/Arc2D.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/libjava/java/awt/geom/Arc2D.java b/libjava/java/awt/geom/Arc2D.java index 2eb9650cf88..64d81650bfe 100644 --- a/libjava/java/awt/geom/Arc2D.java +++ b/libjava/java/awt/geom/Arc2D.java @@ -50,7 +50,7 @@ import java.util.NoSuchElementException; * and while the angle can be any value, the path iterator only traverses the * first 360 degrees. Storage is up to the subclasses. * - * @author Eric Blake <ebb9@email.byu.edu> + * @author Eric Blake (ebb9@email.byu.edu) * @since 1.2 * @status updated to 1.4, but still missing functionality */ @@ -527,7 +527,7 @@ public abstract class Arc2D extends RectangularShape * This class is used to iterate over an arc. Since ellipses are a subclass * of arcs, this is used by Ellipse2D as well. * - * @author Eric Blake <ebb9@email.byu.edu> + * @author Eric Blake (ebb9@email.byu.edu) */ static final class ArcIterator implements PathIterator { @@ -766,7 +766,7 @@ public abstract class Arc2D extends RectangularShape /** * This class implements an arc in double precision. * - * @author Eric Blake <ebb9@email.byu.edu + * @author Eric Blake (ebb9@email.byu.edu) * @since 1.2 */ public static class Double extends Arc2D @@ -985,7 +985,7 @@ public abstract class Arc2D extends RectangularShape /** * This class implements an arc in float precision. * - * @author Eric Blake <ebb9@email.byu.edu + * @author Eric Blake (ebb9@email.byu.edu) * @since 1.2 */ public static class Float extends Arc2D |