Keine Cache-Version

Caching deaktiviert Standardeinstellung für diese Seite:aktiviert (code LNG204)
Wenn die Anzeige zu langsam ist, können Sie den Benutzermodus deaktivieren, um die zwischengespeicherte Version anzuzeigen.
javax.swing.border

Class AbstractBorder

    • Constructor Detail

      • AbstractBorder

        public AbstractBorder()
    • 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 interface Border
        Parameters:
        c - the component for which this border is being painted
        g - the paint graphics
        x - the x position of the painted border
        y - the y position of the painted border
        width - the width of the painted border
        height - the height of the painted border
      • getBorderInsets

        public Insets getBorderInsets(Component c)
        This default implementation returns a new Insets object that is initialized by the getBorderInsets(Component,Insets) method. By default the top, left, bottom, and right fields are set to 0.
        Specified by:
        getBorderInsets in interface Border
        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 applies
        insets - the object to be reinitialized
        Returns:
        the insets object
      • isBorderOpaque

        public boolean isBorderOpaque()
        This default implementation returns false.
        Specified by:
        isBorderOpaque in interface Border
        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 computed
        x - the x position of the border
        y - the y position of the border
        width - the width of the border
        height - 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 computed
        b - the Border object
        x - the x position of the border
        y - the y position of the border
        width - the width of the border
        height - 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 for
        width - the width to get the baseline for
        height - 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 return null; if the baseline can not be calculated return BaselineResizeBehavior.OTHER. Callers should first ask for the baseline using getBaseline and if a value >= 0 is returned use this method. It is acceptable for this method to return a value other than BaselineResizeBehavior.OTHER even if getBaseline 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()

Deutsche Übersetzung

Sie haben gebeten, diese Seite auf Deutsch zu besuchen. Momentan ist nur die Oberfläche übersetzt, aber noch nicht der gesamte Inhalt.

Wenn Sie mir bei Übersetzungen helfen wollen, ist Ihr Beitrag willkommen. Alles, was Sie tun müssen, ist, sich auf der Website zu registrieren und mir eine Nachricht zu schicken, in der Sie gebeten werden, Sie der Gruppe der Übersetzer hinzuzufügen, die Ihnen die Möglichkeit gibt, die gewünschten Seiten zu übersetzen. Ein Link am Ende jeder übersetzten Seite zeigt an, dass Sie der Übersetzer sind und einen Link zu Ihrem Profil haben.

Vielen Dank im Voraus.

Dokument erstellt 11/06/2005, zuletzt geändert 04/03/2020
Quelle des gedruckten Dokuments:https://www.gaudry.be/de/java-api-rf-javax/swing/border/abstractborder.html

Die Infobro ist eine persönliche Seite, deren Inhalt in meiner alleinigen Verantwortung liegt. Der Text ist unter der CreativeCommons-Lizenz (BY-NC-SA) verfügbar. Weitere Informationen auf die Nutzungsbedingungen und dem Autor.

Referenzen

  1. Zeigen Sie - html-Dokument Sprache des Dokuments:fr Manuel PHP : https://docs.oracle.com

Diese Verweise und Links verweisen auf Dokumente, die während des Schreibens dieser Seite konsultiert wurden, oder die zusätzliche Informationen liefern können, aber die Autoren dieser Quellen können nicht für den Inhalt dieser Seite verantwortlich gemacht werden.
Der Autor Diese Website ist allein dafür verantwortlich, wie die verschiedenen Konzepte und Freiheiten, die mit den Nachschlagewerken gemacht werden, hier dargestellt werden. Denken Sie daran, dass Sie mehrere Quellinformationen austauschen müssen, um das Risiko von Fehlern zu reduzieren.

Inhaltsverzeichnis Haut