2003-02-13 Michael Koch <konqueror@gmx.de>

* gnu/java/awt/peer/gtk/GdkGraphics.java
	(drawString): New stubbed method.
	* java/awt/Graphics.java
	(drawString): New method.

From-SVN: r62862
This commit is contained in:
Michael Koch
2003-02-13 19:26:57 +00:00
committed by Michael Koch
parent ffc8f11e8c
commit 1cb02bdfd3
3 changed files with 16 additions and 0 deletions
+3
View File
@@ -39,6 +39,7 @@ exception statement from your version. */
package java.awt;
import java.awt.image.ImageObserver;
import java.text.AttributedCharacterIterator;
/**
* This is the abstract superclass of classes for drawing to graphics
@@ -595,6 +596,8 @@ fillPolygon(Polygon polygon)
public abstract void
drawString(String string, int x, int y);
public abstract void drawString (AttributedCharacterIterator ci, int x, int y);
/*************************************************************************/
/**