/[classpath]/classpath/java/awt/Graphics.java
ViewVC logotype

Diff of /classpath/java/awt/Graphics.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.10 by mark, Fri Jul 30 16:01:47 2004 UTC revision 1.11 by mkoch, Tue Nov 16 09:59:11 2004 UTC
# Line 243  getClipRect() Line 243  getClipRect()
243    * region and the rectangle determined by the specified parameters.    * region and the rectangle determined by the specified parameters.
244    *    *
245    * @param x The X coordinate of the upper left corner of the intersect rect.    * @param x The X coordinate of the upper left corner of the intersect rect.
246    * @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.
247    * @param width The width of the intersect rect.    * @param width The width of the intersect rect.
248    * @param height The height of the intersect rect.    * @param height The height of the intersect rect.
249    */    */
# Line 279  getClip(); Line 279  getClip();
279  /**  /**
280    * Sets the clipping region to the specified <code>Shape</code>.    * Sets the clipping region to the specified <code>Shape</code>.
281    *    *
282    * @param shape The new clipping region.    * @param clip The new clipping region.
283    */    */
284  public abstract void  public abstract void
285  setClip(Shape clip);  setClip(Shape clip);
# Line 371  clearRect(int x, int y, int width, int h Line 371  clearRect(int x, int y, int width, int h
371    * @param width The width of the draw rect.    * @param width The width of the draw rect.
372    * @param height The height of the draw rect.    * @param height The height of the draw rect.
373    * @param arcWidth The width of the corner arcs.    * @param arcWidth The width of the corner arcs.
374    * @param arcHeigth The height of the corner arcs.    * @param arcHeight The height of the corner arcs.
375    */    */
376  public abstract void  public abstract void
377  drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight);  drawRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight);
# Line 386  drawRoundRect(int x, int y, int width, i Line 386  drawRoundRect(int x, int y, int width, i
386    * @param width The width of the fill rect.    * @param width The width of the fill rect.
387    * @param height The height of the fill rect.    * @param height The height of the fill rect.
388    * @param arcWidth The width of the corner arcs.    * @param arcWidth The width of the corner arcs.
389    * @param arcHeigth The height of the corner arcs.    * @param arcHeight The height of the corner arcs.
390    */    */
391  public abstract void  public abstract void
392  fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight);  fillRoundRect(int x, int y, int width, int height, int arcWidth, int arcHeight);
# Line 480  fillOval(int x, int y, int width, int he Line 480  fillOval(int x, int y, int width, int he
480    * @param arcAngle The extent of the arc.    * @param arcAngle The extent of the arc.
481    */    */
482  public abstract void  public abstract void
483  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);
484    
485  /*************************************************************************/  /*************************************************************************/
486    
# Line 498  drawArc(int x, int y, int width, int hei Line 498  drawArc(int x, int y, int width, int hei
498    * @param arcAngle The extent of the arc.    * @param arcAngle The extent of the arc.
499    */    */
500  public abstract void  public abstract void
501  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);
502    
503  /*************************************************************************/  /*************************************************************************/
504    
# Line 734  finalize() Line 734  finalize()
734  /**  /**
735   * Returns a string representation of this object.   * Returns a string representation of this object.
736   *   *
737   * @param A string representation of this object.   * @return A string representation of this object.
738   */   */
739  public String  public String
740  toString()  toString()

Legend:
Removed from v.1.10  
changed lines
  Added in v.1.11

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26