aboutsummaryrefslogtreecommitdiff
path: root/libjava/java/awt/Graphics.java
diff options
context:
space:
mode:
Diffstat (limited to 'libjava/java/awt/Graphics.java')
-rw-r--r--libjava/java/awt/Graphics.java14
1 files changed, 7 insertions, 7 deletions
diff --git a/libjava/java/awt/Graphics.java b/libjava/java/awt/Graphics.java
index c75d34e..8dc703c 100644
--- a/libjava/java/awt/Graphics.java
+++ b/libjava/java/awt/Graphics.java
@@ -243,7 +243,7 @@ getClipRect()
* region and the rectangle determined by the specified parameters.
*
* @param x The X coordinate of the upper left corner of the intersect rect.
- * @param Y The Y coordinate of the upper left corner of the intersect rect.
+ * @param y The Y coordinate of the upper left corner of the intersect rect.
* @param width The width of the intersect rect.
* @param height The height of the intersect rect.
*/
@@ -279,7 +279,7 @@ getClip();
/**
* Sets the clipping region to the specified <code>Shape</code>.
*
- * @param shape The new clipping region.
+ * @param clip The new clipping region.
*/
public abstract void
setClip(Shape clip);
@@ -371,7 +371,7 @@ clearRect(int x, int y, int width, int height);
* @param width The width of the draw rect.
* @param height The height of the draw rect.
* @param arcWidth The width of the corner arcs.
- * @param arcHeigth The height of the corner arcs.
+ * @param arcHeight The height of the corner arcs.
*/
public abstract void
drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight);
@@ -386,7 +386,7 @@ drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight);
* @param width The width of the fill rect.
* @param height The height of the fill rect.
* @param arcWidth The width of the corner arcs.
- * @param arcHeigth The height of the corner arcs.
+ * @param arcHeight The height of the corner arcs.
*/
public abstract void
fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight);
@@ -480,7 +480,7 @@ fillOval(int x, int y, int width, int height);
* @param arcAngle The extent of the arc.
*/
public abstract void
-drawArc(int x, int y, int width, int height, int startAngle, int arcAngle);
+drawArc(int x, int y, int width, int height, int arcStart, int arcAngle);
/*************************************************************************/
@@ -498,7 +498,7 @@ drawArc(int x, int y, int width, int height, int startAngle, int arcAngle);
* @param arcAngle The extent of the arc.
*/
public abstract void
-fillArc(int x, int y, int width, int height, int startAngle, int arcAngle);
+fillArc(int x, int y, int width, int height, int arcStart, int arcAngle);
/*************************************************************************/
@@ -734,7 +734,7 @@ finalize()
/**
* Returns a string representation of this object.
*
- * @param A string representation of this object.
+ * @return A string representation of this object.
*/
public String
toString()