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:
parent
ffc8f11e8c
commit
1cb02bdfd3
3 changed files with 16 additions and 0 deletions
|
@ -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)
|
||||
{
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue