diff options
author | Michael Koch <konqueror@gmx.de> | 2003-06-11 10:37:48 +0000 |
---|---|---|
committer | Michael Koch <mkoch@gcc.gnu.org> | 2003-06-11 10:37:48 +0000 |
commit | 37f3981f8062d2c331a143e90cbacbf021661c49 (patch) | |
tree | b0aa59455a5e1a8f2c3488915f500eb171cfda3d /libjava/java/awt/Graphics.java | |
parent | 0310c414068caf027e13be9e93cee97808b5d7a4 (diff) | |
download | gcc-37f3981f8062d2c331a143e90cbacbf021661c49.zip gcc-37f3981f8062d2c331a143e90cbacbf021661c49.tar.gz gcc-37f3981f8062d2c331a143e90cbacbf021661c49.tar.bz2 |
Frame.java, [...]: New versions from classpath.
2003-06-11 Michael Koch <konqueror@gmx.de>
* java/awt/Frame.java,
java/awt/Graphics.java,
java/awt/Menu.java,
java/awt/Robot.java,
java/awt/image/ColorModel.java:
New versions from classpath.
From-SVN: r67754
Diffstat (limited to 'libjava/java/awt/Graphics.java')
-rw-r--r-- | libjava/java/awt/Graphics.java | 40 |
1 files changed, 0 insertions, 40 deletions
diff --git a/libjava/java/awt/Graphics.java b/libjava/java/awt/Graphics.java index 1b4581b..c225b52 100644 --- a/libjava/java/awt/Graphics.java +++ b/libjava/java/awt/Graphics.java @@ -441,24 +441,6 @@ fill3DRect(int x, int y, int width, int height, boolean raised) /*************************************************************************/ /** - * 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: ??? -} - -/*************************************************************************/ - -/** * Draws an oval that just fits within the specified rectangle. * * @param x The X coordinate of the upper left corner of the rect. @@ -615,28 +597,6 @@ drawChars(char data[], int offset, int length, int x, int y) drawString(new String(data, offset, length), x, y); } -/*************************************************************************/ - -/** - * 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) -*/ - public void drawBytes(byte[] data, int offset, int length, int x, int y) { |