JavaTM 2
Platform
Std. Ed. v1.4.0

javax.swing.border
クラス AbstractBorder

java.lang.Object
  |
  +--javax.swing.border.AbstractBorder
すべての実装インタフェース:
Border, Serializable
直系の既知のサブクラス:
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, TitledBorder

public abstract class AbstractBorder
extends Object
implements Border, Serializable

サイズ指定のない空のボーダを実装するクラスです。他のボーダのクラスを簡単に派生できる、便利な基底クラスを提供します。

警告: このクラスの直列化されたオブジェクトは、今後の Swing リリースとの互換性がなくなります。現在の直列化のサポートは、短期記憶や、同じバージョンの Swing を実行するアプリケーション間の RMI に適しています。JDK バージョン 1.4 以降、すべての JavaBeansTM の長期記憶用サポートは、java.beans パッケージに追加されています。詳細は、XMLEncoder を参照してください。


コンストラクタの概要
AbstractBorder()
           
 
メソッドの概要
 Insets getBorderInsets(Component c)
          このデフォルト実装は、topleftbottom、および right フィールドが 0 に設定される新規 Insets インスタンスを返します。
 Insets getBorderInsets(Component c, Insets insets)
          インセットパラメータを、この Border の現在のインセットで初期化し直します。
static Rectangle getInteriorRectangle(Component c, Border b, int x, int y, int width, int height)
          ボーダのインセットから引数の値を減算して矩形を返します。
 Rectangle getInteriorRectangle(Component c, int x, int y, int width, int height)
          静的メソッドを呼び出す簡易メソッドです。
 boolean isBorderOpaque()
          このデフォルト実装は false を返します。
 void paintBorder(Component c, Graphics g, int x, int y, int width, int height)
          このデフォルト実装では、ペイントを行いません。
 
クラス java.lang.Object から継承したメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

AbstractBorder

public AbstractBorder()
メソッドの詳細

paintBorder

public void paintBorder(Component c,
                        Graphics g,
                        int x,
                        int y,
                        int width,
                        int height)
このデフォルト実装では、ペイントを行いません。

定義:
インタフェース Border 内の paintBorder
パラメータ:
c - このボーダがペイントされるコンポーネント
g - ペイントのグラフィックス
x - ペイントされたボーダの x 座標
y - ペイントされたボーダの y 座標
width - ペイントされたボーダの幅
height - ペイントされたボーダの高さ

getBorderInsets

public Insets getBorderInsets(Component c)
このデフォルト実装は、topleftbottom、および right フィールドが 0 に設定される新規 Insets インスタンスを返します。

定義:
インタフェース Border 内の getBorderInsets
パラメータ:
c - このボーダのインセットの値を適用するコンポーネント
戻り値:
0 に初期化される新しい Insets オブジェクト

getBorderInsets

public Insets getBorderInsets(Component c,
                              Insets insets)
インセットパラメータを、この Border の現在のインセットで初期化し直します。

パラメータ:
c - このボーダのインセットの値を適用するコンポーネント
insets - 初期化し直されるオブジェクト
戻り値:
insets オブジェクト

isBorderOpaque

public boolean isBorderOpaque()
このデフォルト実装は false を返します。

定義:
インタフェース Border 内の isBorderOpaque
戻り値:
false

getInteriorRectangle

public Rectangle getInteriorRectangle(Component c,
                                      int x,
                                      int y,
                                      int width,
                                      int height)
静的メソッドを呼び出す簡易メソッドです。

パラメータ:
c - このボーダが計算されるコンポーネント
x - ボーダの x 座標
y - ボーダの y 座標
width - ボーダの幅
height - ボーダの高さ
戻り値:
内部座標を持つ Rectangle

getInteriorRectangle

public static Rectangle getInteriorRectangle(Component c,
                                             Border b,
                                             int x,
                                             int y,
                                             int width,
                                             int height)
ボーダのインセットから引数の値を減算して矩形を返します。コンポーネントが描画して埋める領域を、ボーダと交差しないように決めるのに便利です。

パラメータ:
c - このボーダが計算されるコンポーネント
b - Border オブジェクト
x - ボーダの x 座標
y - ボーダの y 座標
width - ボーダの幅
height - ボーダの高さ
戻り値:
内部座標を持つ Rectangle

JavaTM 2
Platform
Std. Ed. v1.4.0

バグの報告と機能のリクエスト
これ以外の API リファレンスおよび開発者用ドキュメントについては、 Java 2 SDK SE 開発者用ドキュメントを参照してください。 開発者向けの詳細な解説、概念の概要、用語の定義、バグの回避策、 およびコード実例が含まれています。

Java、Java 2D、および JDBC は米国ならびにその他の国における米国 Sun Microsystems, Inc. の商標もしくは登録商標です。
Copyright 1993-2002 Sun Microsystems, Inc. 901 San Antonio Road
Palo Alto, California, 94303, U.S.A. All Rights Reserved.