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
This commit is contained in:
Michael Koch 2003-06-05 20:03:26 +00:00 committed by Michael Koch
parent 93152c2fd6
commit 48243c88a7
2 changed files with 13 additions and 9 deletions

View File

@ -1,3 +1,8 @@
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,

View File

@ -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);
}