From 50cd1456e5b4a77e4b7a19b1d3ff1a64cda8c26c Mon Sep 17 00:00:00 2001 From: mkoch Date: Wed, 11 Jun 2003 10:37:48 +0000 Subject: 2003-06-11 Michael Koch * 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. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@67754 138bc75d-0d04-0410-961f-82ee72b054a4 --- libjava/java/awt/Graphics.java | 40 ---------------------------------------- 1 file changed, 40 deletions(-) (limited to 'libjava/java/awt/Graphics.java') diff --git a/libjava/java/awt/Graphics.java b/libjava/java/awt/Graphics.java index 1b4581b64f0..c225b521a04 100644 --- a/libjava/java/awt/Graphics.java +++ b/libjava/java/awt/Graphics.java @@ -440,24 +440,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 true if the rectangle appears raised, - * false 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. * @@ -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) { -- cgit v1.2.3