public class StrokeBorder extends AbstractBorder
警告: このクラスの直列化されたオブジェクトは、今後のSwingリリースと互換ではなくなる予定です。現在の直列化のサポートは、短期間の格納や、同じバージョンのSwingを実行するアプリケーション間のRMIに適しています。1.4以降、すべてのJavaBeans(tm)用の長期間の格納サポートがjava.beans
パッケージに追加されています。XMLEncoder
を参照してください。
コンストラクタと説明 |
---|
StrokeBorder(BasicStroke stroke)
指定された
stroke のボーダーを作成します。 |
StrokeBorder(BasicStroke stroke, Paint paint)
指定された
stroke とpaint のボーダーを作成します。 |
修飾子と型 | メソッドと説明 |
---|---|
Insets |
getBorderInsets(Component c, Insets insets)
insets パラメータを、このボーダーの現在のイン・セットで初期化し直します。 |
Paint |
getPaint()
ボーダーの描画中に色を生成するために使われる
Paint オブジェクトを返します。 |
BasicStroke |
getStroke()
ボーダーのレンダリング中に図形を描くために使用される
BasicStroke オブジェクトを返します。 |
void |
paintBorder(Component c, Graphics g, int x, int y, int width, int height)
指定されたコンポーネントのボーダーを、指定された位置およびサイズでペイントします。
|
getBaseline, getBaselineResizeBehavior, getBorderInsets, getInteriorRectangle, getInteriorRectangle, isBorderOpaque
public StrokeBorder(BasicStroke stroke)
stroke
のボーダーを作成します。コンポーネントのフォアグラウンド・カラーがボーダーの描画に使われます。stroke
- 図形のストロークに使用されるBasicStroke
オブジェクトNullPointerException
- 指定されたstroke
がnull
である場合@ConstructorProperties(value={"stroke","paint"}) public StrokeBorder(BasicStroke stroke, Paint paint)
stroke
とpaint
のボーダーを作成します。指定されたpaint
がnull
の場合は、ボーダーのレンダリングにコンポーネントのフォアグラウンド・カラーが使用されます。stroke
- 図形のストロークに使用されるBasicStroke
オブジェクトpaint
- 色の生成に使用されるPaint
オブジェクトNullPointerException
- 指定されたstroke
がnull
である場合public void paintBorder(Component c, Graphics g, int x, int y, int width, int height)
Paint
オブジェクトを使用して指定されなかった場合は、ボーダーのレンダリングにコンポーネントのフォアグラウンド・カラーが使用されます。コンポーネントのフォアグラウンド・カラーが使用できない場合は、Graphics
オブジェクトのデフォルト・カラーが使用されます。paintBorder
、インタフェース: Border
paintBorder
、クラス: AbstractBorder
c
- このボーダーがペイントされるコンポーネントg
- ペイント・グラフィックスx
- ペイントされるボーダーのx座標y
- ペイントされるボーダーのy座標width
- ペイントされるボーダーの幅height
- ペイントされるボーダーの高さNullPointerException
- 指定されたg
がnull
である場合public Insets getBorderInsets(Component c, Insets insets)
insets
パラメータを、このボーダーの現在のイン・セットで初期化し直します。すべてのイン・セットは、ボーダーをペイントする際に使用されるストロークのライン幅以上で、最小の(負の無限大にもっとも近い)整数値です。getBorderInsets
、クラス: AbstractBorder
c
- このボーダーのイン・セットの値を適用するコンポーネントinsets
- 初期化し直されるInsets
オブジェクトinsets
パラメータNullPointerException
- 指定されたinsets
がnull
である場合Math.ceil(double)
public BasicStroke getStroke()
BasicStroke
オブジェクトを返します。BasicStroke
オブジェクト バグまたは機能を送信
詳細なAPIリファレンスおよび開発者ドキュメントについては、Java SEのドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright© 1993, 2014, Oracle and/or its affiliates. All rights reserved.