- java.lang.Object
-
- javax.swing.border.AbstractBorder
-
- All Implemented Interfaces:
- Serializable, Border
- Direct Known Subclasses:
- BasicBorders.ButtonBorder, BasicBorders.FieldBorder, BasicBorders.MarginBorder, BasicBorders.MenuBarBorder, BevelBorder, CompoundBorder, EmptyBorder, EtchedBorder, LineBorder, MetalBorders.ButtonBorder, MetalBorders.Flush3DBorder, MetalBorders.InternalFrameBorder, MetalBorders.MenuBarBorder, MetalBorders.MenuItemBorder, MetalBorders.OptionDialogBorder, MetalBorders.PaletteBorder, MetalBorders.PopupMenuBorder, MetalBorders.ScrollPaneBorder, MetalBorders.TableHeaderBorder, MetalBorders.ToolBarBorder, StrokeBorder, TitledBorder
public abstract class AbstractBorder extends Object implements Border, Serializable
A class that implements an empty border with no size. This provides a convenient base class from which other border classes can be easily derived.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. As of 1.4, support for long term storage of all JavaBeansTM has been added to the
java.beans
package. Please seeXMLEncoder
.
-
-
Constructor Summary
Constructors Constructor and Description AbstractBorder()
-
Method Summary
Methods Modifier and Type Method and Description int
getBaseline(Component c, int width, int height)
Returns the baseline.Component.BaselineResizeBehavior
getBaselineResizeBehavior(Component c)
Returns an enum indicating how the baseline of a component changes as the size changes.Insets
getBorderInsets(Component c)
This default implementation returns a newInsets
object that is initialized by thegetBorderInsets(Component,Insets)
method.Insets
getBorderInsets(Component c, Insets insets)
Reinitializes the insets parameter with this Border's current Insets.static Rectangle
getInteriorRectangle(Component c, Border b, int x, int y, int width, int height)
Returns a rectangle using the arguments minus the insets of the border.Rectangle
getInteriorRectangle(Component c, int x, int y, int width, int height)
This convenience method calls the static method.boolean
isBorderOpaque()
This default implementation returns false.void
paintBorder(Component c, Graphics g, int x, int y, int width, int height)
This default implementation does no painting.
-
-
-
Method Detail
-
paintBorder
public void paintBorder(Component c, Graphics g, int x, int y, int width, int height)
This default implementation does no painting.- Specified by:
paintBorder
in interfaceBorder
- Parameters:
c
- the component for which this border is being paintedg
- the paint graphicsx
- the x position of the painted bordery
- the y position of the painted borderwidth
- the width of the painted borderheight
- the height of the painted border
-
getBorderInsets
public Insets getBorderInsets(Component c)
This default implementation returns a newInsets
object that is initialized by thegetBorderInsets(Component,Insets)
method. By default thetop
,left
,bottom
, andright
fields are set to0
.- Specified by:
getBorderInsets
in interfaceBorder
- Parameters:
c
- the component for which this border insets value applies- Returns:
- a new
Insets
object
-
getBorderInsets
public Insets getBorderInsets(Component c, Insets insets)
Reinitializes the insets parameter with this Border's current Insets.- Parameters:
c
- the component for which this border insets value appliesinsets
- the object to be reinitialized- Returns:
- the
insets
object
-
isBorderOpaque
public boolean isBorderOpaque()
This default implementation returns false.- Specified by:
isBorderOpaque
in interfaceBorder
- Returns:
- false
-
getInteriorRectangle
public Rectangle getInteriorRectangle(Component c, int x, int y, int width, int height)
This convenience method calls the static method.- Parameters:
c
- the component for which this border is being computedx
- the x position of the bordery
- the y position of the borderwidth
- the width of the borderheight
- the height of the border- Returns:
- a
Rectangle
containing the interior coordinates
-
getInteriorRectangle
public static Rectangle getInteriorRectangle(Component c, Border b, int x, int y, int width, int height)
Returns a rectangle using the arguments minus the insets of the border. This is useful for determining the area that components should draw in that will not intersect the border.- Parameters:
c
- the component for which this border is being computedb
- theBorder
objectx
- the x position of the bordery
- the y position of the borderwidth
- the width of the borderheight
- the height of the border- Returns:
- a
Rectangle
containing the interior coordinates
-
getBaseline
public int getBaseline(Component c, int width, int height)
Returns the baseline. A return value less than 0 indicates the border does not have a reasonable baseline.The default implementation returns -1. Subclasses that support baseline should override appropriately. If a value >= 0 is returned, then the component has a valid baseline for any size >= the minimum size and
getBaselineResizeBehavior
can be used to determine how the baseline changes with size.- Parameters:
c
-Component
baseline is being requested forwidth
- the width to get the baseline forheight
- the height to get the baseline for- Returns:
- the baseline or < 0 indicating there is no reasonable baseline
- Throws:
IllegalArgumentException
- if width or height is < 0- Since:
- 1.6
- See Also:
Component.getBaseline(int,int)
,Component.getBaselineResizeBehavior()
-
getBaselineResizeBehavior
public Component.BaselineResizeBehavior getBaselineResizeBehavior(Component c)
Returns an enum indicating how the baseline of a component changes as the size changes. This method is primarily meant for layout managers and GUI builders.The default implementation returns
BaselineResizeBehavior.OTHER
, subclasses that support baseline should override appropriately. Subclasses should never returnnull
; if the baseline can not be calculated returnBaselineResizeBehavior.OTHER
. Callers should first ask for the baseline usinggetBaseline
and if a value >= 0 is returned use this method. It is acceptable for this method to return a value other thanBaselineResizeBehavior.OTHER
even ifgetBaseline
returns a value less than 0.- Parameters:
c
-Component
to return baseline resize behavior for- Returns:
- an enum indicating how the baseline changes as the border is resized
- Since:
- 1.6
- See Also:
Component.getBaseline(int,int)
,Component.getBaselineResizeBehavior()
-
-
Traduction non disponible
Les API Java ne sont pas encore traduites en français sur l'infobrol. Seule la version anglaise est disponible pour l'instant.
Version en cache
17/11/2024 17:33:33 Cette version de la page est en cache (à la date du 17/11/2024 17:33:33) afin d'accélérer le traitement. Vous pouvez activer le mode utilisateur dans le menu en haut pour afficher la dernère version de la page.Document créé le 31/08/2006, dernière modification le 04/03/2020
Source du document imprimé : https://www.gaudry.be/java-api-rf-javax/swing/border/abstractborder.html
L'infobrol est un site personnel dont le contenu n'engage que moi. Le texte est mis à disposition sous licence CreativeCommons(BY-NC-SA). Plus d'info sur les conditions d'utilisation et sur l'auteur.
Références
Ces références et liens indiquent des documents consultés lors de la rédaction de cette page, ou qui peuvent apporter un complément d'information, mais les auteurs de ces sources ne peuvent être tenus responsables du contenu de cette page.
L'auteur de ce site est seul responsable de la manière dont sont présentés ici les différents concepts, et des libertés qui sont prises avec les ouvrages de référence. N'oubliez pas que vous devez croiser les informations de sources multiples afin de diminuer les risques d'erreurs.