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

View file

@ -40,6 +40,7 @@ package gnu.java.awt.peer.gtk;
import java.awt.*;
import java.awt.image.*;
import java.text.AttributedCharacterIterator;
public class GdkGraphics extends Graphics
{
@ -211,6 +212,11 @@ public class GdkGraphics extends Graphics
((GtkFontPeer)font.getPeer ()).getXLFD (), font.getSize ());
}
public void drawString (AttributedCharacterIterator ci, int x, int y)
{
throw new Error ("not implemented");
}
public void drawRoundRect(int x, int y, int width, int height,
int arcWidth, int arcHeight)
{