Commit 48243c88 by Michael Koch Committed by Michael Koch

Border.java: New version from classpath.

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

	* javax/swing/border/Border.java:
	New version from classpath.

From-SVN: r67508
parent 93152c2f
2003-06-05 Michael Koch <konqueror@gmx.de>
* javax/swing/border/Border.java:
New version from classpath.
2003-06-05 Michael Koch <konqueror@gmx.de>
* javax/swing/border/AbstractBorder.java,
javax/swing/border/BevelBorder.java,
javax/swing/border/CompoundBorder.java,
......
......@@ -35,18 +35,17 @@ this exception to your version of the library, but you are not
obligated to do so. If you do not wish to do so, delete this
exception statement from your version. */
package javax.swing.border;
import java.awt.*;
import java.awt.Component;
import java.awt.Graphics;
import java.awt.Insets;
public interface Border
{
public Insets getBorderInsets(Component c);
public boolean isBorderOpaque();
public void paintBorder(Component c,
Graphics g,
int x,
int y,
int width,
int height);
public Insets getBorderInsets (Component c);
public boolean isBorderOpaque ();
public void paintBorder (Component c, Graphics g, int x, int y,
int width, int height);
}
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