JavaTM 2 Platform
Standard Ed. 5.0

javax.swing.plaf.basic
クラス BasicEditorPaneUI

java.lang.Object
  上位を拡張 javax.swing.plaf.ComponentUI
      上位を拡張 javax.swing.plaf.TextUI
          上位を拡張 javax.swing.plaf.basic.BasicTextUI
              上位を拡張 javax.swing.plaf.basic.BasicEditorPaneUI
すべての実装されたインタフェース:
ViewFactory
直系の既知のサブクラス:
BasicTextPaneUI

public class BasicEditorPaneUI
extends BasicTextUI

JEditorPane の Look & Feel を提供します。

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


入れ子のクラスの概要
 
クラス javax.swing.plaf.basic.BasicTextUI から継承された入れ子のクラス/インタフェース
BasicTextUI.BasicCaret, BasicTextUI.BasicHighlighter
 
コンストラクタの概要
BasicEditorPaneUI()
          新しい BasicEditorPaneUI を作成します。
 
メソッドの概要
static ComponentUI createUI(JComponent c)
          JTextPane の UI を作成します。
 EditorKit getEditorKit(JTextComponent tc)
          UI の EditorKit をフェッチします。
protected  String getPropertyPrefix()
          UIManager を使ってプロパティを参照するためのキーとして使われる名前をフェッチします。
 void installUI(JComponent c)
          コンポーネントの UI をインストールします。
protected  void propertyChange(PropertyChangeEvent evt)
          このメソッドは、関連する JTextComponent のバウンドプロパティが変更されたときに呼び出されます。
 void uninstallUI(JComponent c)
          コンポーネントの UI をアンインストールします。
 
クラス javax.swing.plaf.basic.BasicTextUI から継承されたメソッド
create, create, createCaret, createHighlighter, createKeymap, damageRange, damageRange, getComponent, getKeymapName, getMaximumSize, getMinimumSize, getNextVisualPositionFrom, getPreferredSize, getRootView, getToolTipText, getVisibleEditorRect, installDefaults, installKeyboardActions, installListeners, modelChanged, modelToView, modelToView, paint, paintBackground, paintSafely, setView, uninstallDefaults, uninstallKeyboardActions, uninstallListeners, update, viewToModel, viewToModel
 
クラス javax.swing.plaf.ComponentUI から継承されたメソッド
contains, getAccessibleChild, getAccessibleChildrenCount
 
クラス java.lang.Object から継承されたメソッド
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

コンストラクタの詳細

BasicEditorPaneUI

public BasicEditorPaneUI()
新しい BasicEditorPaneUI を作成します。

メソッドの詳細

createUI

public static ComponentUI createUI(JComponent c)
JTextPane の UI を作成します。

パラメータ:
c - JTextPane コンポーネント
戻り値:
UI

getPropertyPrefix

protected String getPropertyPrefix()
UIManager を使ってプロパティを参照するためのキーとして使われる名前をフェッチします。これは、すべての標準テキストプロパティの接頭辞として使われます。

定義:
クラス BasicTextUI 内の getPropertyPrefix
戻り値:
名前 (EditorPane)

installUI

public void installUI(JComponent c)
コンポーネントの UI をインストールします。このメソッドは、次のことを実行します。
  1. 関連するコンポーネントを不透明に設定する。これはもっとも一般的な場合であり、サブクラスでまたは JTextComponent で直接簡単に変更できる。これにより、コンポーネントのバックグラウンドカラーがペイントされる
  2. 関連するコンポーネントにデフォルトのキャレットおよびハイライタをインストールする
  3. エディタおよびモデルに接続する。モデルがない場合は、デフォルトのモデルを作成する
  4. モデルを表すために使用されるビューファクトリおよびビュー階層を作成する

オーバーライド:
クラス BasicTextUI 内の installUI
パラメータ:
c - エディタコンポーネント
導入されたバージョン:
1.5
関連項目:
ComponentUI.installUI(javax.swing.JComponent)

uninstallUI

public void uninstallUI(JComponent c)
コンポーネントの UI をアンインストールします。このメソッドは、リスナーの削除、ハイライタのアンインストール、ビューの削除を行い、キーマップを無効にします。

オーバーライド:
クラス BasicTextUI 内の uninstallUI
パラメータ:
c - エディタコンポーネント
導入されたバージョン:
1.5
関連項目:
ComponentUI.uninstallUI(javax.swing.JComponent)

getEditorKit

public EditorKit getEditorKit(JTextComponent tc)
UI の EditorKit をフェッチします。これは、関連する JEditorPane で現在設定されているものです。

オーバーライド:
クラス BasicTextUI 内の getEditorKit
パラメータ:
tc - この UI がインストールされているテキストコンポーネント
戻り値:
エディタ機能
関連項目:
TextUI.getEditorKit(javax.swing.text.JTextComponent)

propertyChange

protected void propertyChange(PropertyChangeEvent evt)
このメソッドは、関連する JTextComponent のバウンドプロパティが変更されたときに呼び出されます。これは、UI が JTextComponent のサブクラスのバウンドプロパティをどのように表示するかを反映するために UI の実装により変更されるフックです。このメソッドは、EditorKit の変更に基づいて ActionMap を作成し直すために実装されます。

オーバーライド:
クラス BasicTextUI 内の propertyChange
パラメータ:
evt - プロパティ変更イベント

JavaTM 2 Platform
Standard Ed. 5.0

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

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