MPN.java, Arc2D.java: Fixed javadocs all over.

2004-05-30  Michael Koch  <konqueror@gmx.de>

	* gnu/java/math/MPN.java,
	java/awt/geom/Arc2D.java:
	Fixed javadocs all over.

From-SVN: r82446
This commit is contained in:
Michael Koch 2004-05-30 13:31:33 +00:00 committed by Michael Koch
parent 933592af79
commit 27d14326c7
3 changed files with 26 additions and 17 deletions

View file

@ -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