RoundRectangle2D.java (getPathIterator): Wrote.
* java/awt/geom/RoundRectangle2D.java (getPathIterator): Wrote. * java/awt/geom/PathIterator.java: Documentation fixes. From-SVN: r71820
This commit is contained in:
parent
9f5e2e1108
commit
a366f4aa32
3 changed files with 167 additions and 7 deletions
|
@ -1,5 +1,5 @@
|
|||
/* PathIterator.java -- describes a shape by iterating over its vertices
|
||||
Copyright (C) 2000, 2002 Free Software Foundation
|
||||
Copyright (C) 2000, 2002, 2003 Free Software Foundation
|
||||
|
||||
This file is part of GNU Classpath.
|
||||
|
||||
|
@ -125,7 +125,7 @@ public interface PathIterator
|
|||
int getWindingRule();
|
||||
|
||||
/**
|
||||
* Tests if the iterator is exhausted. If this returns false, currentSegment
|
||||
* Tests if the iterator is exhausted. If this returns true, currentSegment
|
||||
* and next may throw a NoSuchElementException (although this is not
|
||||
* required).
|
||||
*
|
||||
|
@ -135,7 +135,7 @@ public interface PathIterator
|
|||
|
||||
/**
|
||||
* Advance to the next segment in the iteration. It is not specified what
|
||||
* this does if called when isDone() returns false.
|
||||
* this does if called when isDone() returns true.
|
||||
*
|
||||
* @throws java.util.NoSuchElementException optional when isDone() is true
|
||||
*/
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue