/[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.7 by mkoch, Sat Feb 15 10:29:31 2003 UTC revision 1.8 by mkoch, Sun Jun 8 10:48:59 2003 UTC
# Line 441  fill3DRect(int x, int y, int width, int Line 441  fill3DRect(int x, int y, int width, int
441  /*************************************************************************/  /*************************************************************************/
442    
443  /**  /**
   * Draws the outline of the specified rectangle with a 3D effect  
   *  
   * @param x The X coordinate of the upper left corner of the draw rect.  
   * @param y The Y coordinate of the upper left corner of the draw rect.  
   * @param width The width of the draw rect.  
   * @param height The height of the draw rect.  
   * @param raised <code>true</code> if the rectangle appears raised,  
   * <code>false</code> if it should appear etched.  
   */  
 public void  
 drawRoundRect(int x, int y, int width, int height, boolean raised)  
 {  
   // FIXME: ???  
 }  
   
 /*************************************************************************/  
   
 /**  
444    * Draws an oval that just fits within the specified rectangle.    * Draws an oval that just fits within the specified rectangle.
445    *    *
446    * @param x The X coordinate of the upper left corner of the rect.    * @param x The X coordinate of the upper left corner of the rect.
# Line 615  drawChars(char data[], int offset, int l Line 597  drawChars(char data[], int offset, int l
597    drawString(new String(data, offset, length), x, y);    drawString(new String(data, offset, length), x, y);
598  }  }
599    
 /*************************************************************************/  
   
 /**  
   * Draws the specified bytes as text starting at the specified point.  
   *  
   * @param data The array of bytes to draw.  
   * @param offset The offset into the array to start drawing bytes from.  
   * @param length The number of bytes to draw.  
   * @param x The X coordinate of the point to draw at.  
   * @param y The Y coordinate of the point to draw at.  
   */  
 public void  
 drawChars(byte data[], int offset, int length, int x, int y)  
 {  
   drawString(new String(data, offset, length), x, y);  
 }  
   
 /*  
 public abstract void drawString(AttributedCharacterIterator iterator,  
                                   int x, int y)  
 */  
   
600  public void  public void
601  drawBytes(byte[] data, int offset, int length, int x, int y)  drawBytes(byte[] data, int offset, int length, int x, int y)
602  {  {

Legend:
Removed from v.1.7  
changed lines
  Added in v.1.8

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