Commit 92c268fa by Michael Koch Committed by Michael Koch

JTextComponent.java: New version from classpath.

2003-06-24  Michael Koch  <konqueror@gmx.de>

	* javax/swing/text/JTextComponent.java:
	New version from classpath.

From-SVN: r68410
parent a0ea8550
2003-06-24 Michael Koch <konqueror@gmx.de>
* javax/swing/text/JTextComponent.java:
New version from classpath.
2003-06-24 Michael Koch <konqueror@gmx.de>
* javax/swing/Timer.java,
javax/swing/plaf/ActionMapUIResource.java,
javax/swing/plaf/ButtonUI.java,
......
......@@ -41,6 +41,7 @@ import java.awt.AWTEvent;
import java.awt.Component;
import java.awt.Dimension;
import java.awt.Image;
import java.awt.Insets;
import java.awt.Rectangle;
import java.awt.Point;
import javax.accessibility.Accessible;
......@@ -384,6 +385,12 @@ public abstract class JTextComponent extends JComponent
return null;
}
public Insets getMargin()
{
// FIXME: Not implemented.
return null;
}
public void setText(String text)
{
getDocument().remove(0,doc.getLength());
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment