JavaTM Platform
Standard Ed. 6

javax.swing.border
クラス MatteBorder

java.lang.Object
  上位を拡張 javax.swing.border.AbstractBorder
      上位を拡張 javax.swing.border.EmptyBorder
          上位を拡張 javax.swing.border.MatteBorder
すべての実装されたインタフェース:
Serializable, Border
直系の既知のサブクラス:
BorderUIResource.MatteBorderUIResource

public class MatteBorder
extends EmptyBorder

塗りつぶしカラーやタイリングされたアイコンを使う飾り縁ボーダーを提供するクラスです。

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


フィールドの概要
protected  Color color
           
protected  Icon tileIcon
           
 
クラス javax.swing.border.EmptyBorder から継承されたフィールド
bottom, left, right, top
 
コンストラクタの概要
MatteBorder(Icon tileIcon)
          飾り縁ボーダーを、指定されたタイルアイコンで作成します。
MatteBorder(Insets borderInsets, Color matteColor)
          飾り縁ボーダーを、指定されたインセットおよびカラーで作成します。
MatteBorder(Insets borderInsets, Icon tileIcon)
          飾り縁ボーダーを、指定されたインセットおよびタイルアイコンで作成します。
MatteBorder(int top, int left, int bottom, int right, Color matteColor)
          飾り縁ボーダーを、指定されたインセットおよびカラーで作成します。
MatteBorder(int top, int left, int bottom, int right, Icon tileIcon)
          飾り縁ボーダーを、指定されたインセットおよびタイルアイコンで作成します。
 
メソッドの概要
 Insets getBorderInsets()
          ボーダーのインセットの値を返します。
 Insets getBorderInsets(Component c)
          ボーダーのインセットの値を返します。
 Insets getBorderInsets(Component c, Insets insets)
          insets パラメータを、この Border の現在の Insets で初期化し直します。
 Color getMatteColor()
          ボーダーのタイリングに使用したカラーを返します。
 Icon getTileIcon()
          ボーダーのタイリングに使用したカラーを返します。
 boolean isBorderOpaque()
          ボーダーが不透明かどうかを返します。
 void paintBorder(Component c, Graphics g, int x, int y, int width, int height)
          飾り縁ボーダーをペイントします。
 
クラス javax.swing.border.AbstractBorder から継承されたメソッド
getBaseline, getBaselineResizeBehavior, getInteriorRectangle, getInteriorRectangle
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

フィールドの詳細

color

protected Color color

tileIcon

protected Icon tileIcon
コンストラクタの詳細

MatteBorder

public MatteBorder(int top,
                   int left,
                   int bottom,
                   int right,
                   Color matteColor)
飾り縁ボーダーを、指定されたインセットおよびカラーで作成します。

パラメータ:
top - ボーダーの上インセット
left - ボーダーの左インセット
bottom - ボーダーの下インセット
right - ボーダーの右インセット
matteColor - ボーダーを描画したカラー

MatteBorder

public MatteBorder(Insets borderInsets,
                   Color matteColor)
飾り縁ボーダーを、指定されたインセットおよびカラーで作成します。

パラメータ:
borderInsets - ボーダーのインセット
matteColor - ボーダーを描画したカラー
導入されたバージョン:
1.3

MatteBorder

public MatteBorder(int top,
                   int left,
                   int bottom,
                   int right,
                   Icon tileIcon)
飾り縁ボーダーを、指定されたインセットおよびタイルアイコンで作成します。

パラメータ:
top - ボーダーの上インセット
left - ボーダーの左インセット
bottom - ボーダーの下インセット
right - ボーダーの右インセット
tileIcon - ボーダーのタイリングに使うアイコン

MatteBorder

public MatteBorder(Insets borderInsets,
                   Icon tileIcon)
飾り縁ボーダーを、指定されたインセットおよびタイルアイコンで作成します。

パラメータ:
borderInsets - ボーダーのインセット
tileIcon - ボーダーのタイリングに使うアイコン
導入されたバージョン:
1.3

MatteBorder

public MatteBorder(Icon tileIcon)
飾り縁ボーダーを、指定されたタイルアイコンで作成します。インセットは、タイルアイコンのサイズを基にして動的に計算されます。 インセットの上端と下端は、タイルアイコンの高さに揃えられます。 インセットの左右は、タイルアイコンの幅に揃えられます。

パラメータ:
tileIcon - ボーダーのタイリングに使うアイコン
メソッドの詳細

paintBorder

public void paintBorder(Component c,
                        Graphics g,
                        int x,
                        int y,
                        int width,
                        int height)
飾り縁ボーダーをペイントします。

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

getBorderInsets

public Insets getBorderInsets(Component c)
ボーダーのインセットの値を返します。

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

getBorderInsets

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

オーバーライド:
クラス EmptyBorder 内の getBorderInsets
パラメータ:
c - このボーダーのインセットの値を適用するコンポーネント
insets - 初期化し直されるオブジェクト
戻り値:
insets オブジェクト
導入されたバージョン:
1.3

getBorderInsets

public Insets getBorderInsets()
ボーダーのインセットの値を返します。

オーバーライド:
クラス EmptyBorder 内の getBorderInsets
導入されたバージョン:
1.3

getMatteColor

public Color getMatteColor()
ボーダーのタイリングに使用したカラーを返します。タイルアイコンが使用されている場合は null を返します。

導入されたバージョン:
1.3

getTileIcon

public Icon getTileIcon()
ボーダーのタイリングに使用したカラーを返します。べた一色が使用されている場合は null を返します。

導入されたバージョン:
1.3

isBorderOpaque

public boolean isBorderOpaque()
ボーダーが不透明かどうかを返します。

定義:
インタフェース Border 内の isBorderOpaque
オーバーライド:
クラス EmptyBorder 内の isBorderOpaque
戻り値:
false

JavaTM Platform
Standard Ed. 6

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

Copyright 2006 Sun Microsystems, Inc. All rights reserved. Use is subject to license terms. Documentation Redistribution Policy も参照してください。