インタフェース
javax.swing.event.DocumentListenerの使用
-
DocumentListenerを使用しているパッケージ パッケージ 説明 com.sun.java.accessibility.util Java Accessibility Utilitiesを構成するインタフェースとクラスの集合を提供します。javax.swing すべてのプラットフォーム上で可能なかぎり同じように機能する「軽量」(Java共通言語)コンポーネントのセットを提供します。javax.swing.text 編集可能なテキスト・コンポーネントと編集不能なテキスト・コンポーネントを処理するクラスとインタフェースを提供します。 -
-
com.sun.java.accessibility.utilでのDocumentListenerの使用
DocumentListener型のパラメータを持つcom.sun.java.accessibility.utilのメソッド 修飾子と型 メソッド 説明 static voidSwingEventMonitor. addDocumentListener(DocumentListener l)Java仮想マシンの各コンポーネント・インスタンスのすべてのDOCUMENTイベントを、その発生時に受け取る指定のリスナーを追加します。static voidSwingEventMonitor. removeDocumentListener(DocumentListener l)以後、DOCUMENTイベントをその発生時に受け取らないように、指定されたリスナーを削除します。 -
javax.swingでのDocumentListenerの使用
DocumentListenerを実装しているjavax.swingのクラス 修飾子と型 クラス 説明 protected classJEditorPane.AccessibleJEditorPaneこのクラスは、JEditorPaneクラスのアクセシビリティ・サポートを実装しています。protected classJEditorPane.AccessibleJEditorPaneHTMLこのクラスはAccessibleHypertextのサポートを提供し、このJEditorPaneにインストールされているEditorKitがHTMLEditorKitのインスタンスであるインスタンスで使用されます。protected classJEditorPane.JEditorPaneAccessibleHypertextSupportAccessibleJEditorPaneHTML.getAccessibleTextによって返されるものです。protected classJPasswordField.AccessibleJPasswordFieldこのクラスはJPasswordFieldクラスのアクセシビリティ・サポートを実装しています。protected classJTextArea.AccessibleJTextAreaこのクラスはJTextAreaクラスのアクセシビリティ・サポートを実装しています。protected classJTextField.AccessibleJTextFieldこのクラスは、JTextFieldクラスのアクセシビリティ・サポートを実装しています。 -
javax.swing.textでのDocumentListenerの使用
DocumentListenerを実装しているjavax.swing.textのクラス 修飾子と型 クラス 説明 classJTextComponent.AccessibleJTextComponentこのクラスはJTextComponentクラスのアクセシビリティ・サポートを実装しています。DocumentListenerを返すjavax.swing.textのメソッド 修飾子と型 メソッド 説明 DocumentListener[]AbstractDocument. getDocumentListeners()このドキュメントに登録された、すべてのドキュメント・リスナーから成る配列を返します。DocumentListener型のパラメータを持つjavax.swing.textのメソッド 修飾子と型 メソッド 説明 voidAbstractDocument. addDocumentListener(DocumentListener listener)ドキュメント・リスナーを追加し、変更があったときに通知されるようにします。voidDefaultStyledDocument. addDocumentListener(DocumentListener listener)ドキュメント・リスナーを追加し、変更があったときに通知されるようにします。voidDocument. addDocumentListener(DocumentListener listener)ドキュメントに変更が加えられたときに通知の受信を開始するように、指定されたオブザーバを登録します。voidAbstractDocument. removeDocumentListener(DocumentListener listener)ドキュメント・リスナーを削除します。voidDefaultStyledDocument. removeDocumentListener(DocumentListener listener)ドキュメント・リスナーを削除します。voidDocument. removeDocumentListener(DocumentListener listener)指定されたオブザーバを通知リストから登録解除して、それ以上変更の更新を受信しないようにします。
-