A composite Border class used to compose two Border objects
into a single border by nesting an inside Border object within
the insets of an outside Border object.
For example, this class may be used to add blank margin space
to a component with an existing decorative border:
Warning:
Serialized objects of this class will not be compatible with
future Swing releases. The current serialization support is appropriate
for short term storage or RMI between applications running the same
version of Swing. A future release of Swing will provide support for
long term persistence.
isBorderOpaque()
Returns whether or not this compound border is opaque.
void
paintBorder(Component c,
Graphics g,
int x,
int y,
int width,
int height)
Paints the compound border by painting the outside border
with the specified position and size and then painting the
inside border at the specified position and size offset by
the insets of the outside border.
Methods inherited from class javax.swing.border.AbstractBorder
Creates a compound border with null outside and inside borders.
CompoundBorder
public CompoundBorder(Border outsideBorder,
Border insideBorder)
Creates a compound border with the specified outside and
inside borders. Either border may be null.
Parameters:
outsideBorder - the outside border
insideBorder - the inside border to be nested
Method Detail
isBorderOpaque
public boolean isBorderOpaque()
Returns whether or not this compound border is opaque.
Returns true if both the inside and outside borders are
non-null and opaque; returns false otherwise.
public void paintBorder(Component c,
Graphics g,
int x,
int y,
int width,
int height)
Paints the compound border by painting the outside border
with the specified position and size and then painting the
inside border at the specified position and size offset by
the insets of the outside border.
Submit a bug or feature For further API reference and developer documentation, see Java 2 SDK SE Developer Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
Java, Java 2D, and JDBC are trademarks or registered trademarks of Sun Microsystems, Inc. in the US and other countries. Copyright 1993-2001 Sun Microsystems, Inc. 901 San Antonio Road Palo Alto, California, 94303, U.S.A. All Rights Reserved.