パッケージ | 説明 |
---|---|
java.awt |
ユーザー・インタフェースの作成およびグラフィックスとイメージのペイント用のすべてのクラスを含みます。
|
java.awt.event |
AWTコンポーネントによってトリガーされるさまざまな種類のイベントを処理するインタフェースとクラスを提供します。
|
java.awt.font |
フォント関連のクラスおよびインタフェースを提供します。
|
java.awt.im |
インプット・メソッド・フレームワークのためのクラスおよびインタフェースを提供します。
|
java.awt.im.spi |
あらゆるJava実行時環境で使用できるインプット・メソッドの開発を可能にするインタフェースを提供します。
|
java.text |
テキスト、日付、数値、およびメッセージを自然言語に依存しない方法で処理するためのクラスとインタフェースを提供します。
|
javax.swing |
すべてのプラットフォーム上で可能なかぎり同じように機能する「軽量」(Java共通言語)コンポーネントのセットを提供します。
|
修飾子と型 | メソッドと説明 |
---|---|
abstract void |
Graphics2D.drawString(AttributedCharacterIterator iterator, float x, float y)
指定されたイテレータのテキストを、その属性を
TextAttribute クラスの仕様に従って適用しながらレンダリングします。 |
abstract void |
Graphics.drawString(AttributedCharacterIterator iterator, int x, int y)
指定されたイテレータのテキストを、その属性を
TextAttribute クラスの仕様に従って適用しながらレンダリングします。 |
abstract void |
Graphics2D.drawString(AttributedCharacterIterator iterator, int x, int y)
指定されたイテレータのテキストを、その属性を
TextAttribute クラスの仕様に従って適用しながらレンダリングします。 |
修飾子と型 | メソッドと説明 |
---|---|
AttributedCharacterIterator |
InputMethodEvent.getText()
結合された確定および構成テキストを取得します。
|
コンストラクタと説明 |
---|
InputMethodEvent(Component source, int id, AttributedCharacterIterator text, int committedCharacterCount, TextHitInfo caret, TextHitInfo visiblePosition)
指定されたソース・コンポーネント、タイプ、text、caret、およびvisiblePositionで、
InputMethodEvent を構築します。 |
InputMethodEvent(Component source, int id, long when, AttributedCharacterIterator text, int committedCharacterCount, TextHitInfo caret, TextHitInfo visiblePosition)
指定されたソース・コンポーネント、タイプ、時間、text、caret、およびvisiblePositionで、
InputMethodEvent を構築します。 |
修飾子と型 | メソッドと説明 |
---|---|
void |
LineBreakMeasurer.deleteChar(AttributedCharacterIterator newParagraph, int deletePos)
テキストから文字が1つ削除されたあとに
LineBreakMeasurer を更新して、現在の位置をその段落の先頭に設定します。 |
void |
TextMeasurer.deleteChar(AttributedCharacterIterator newParagraph, int deletePos)
この
TextMeasurer が現在表すパラグラフで1文字を削除してからTextMeasurer を更新します。 |
void |
LineBreakMeasurer.insertChar(AttributedCharacterIterator newParagraph, int insertPos)
テキストに文字が1つ挿入されたあとに
LineBreakMeasurer を更新して、現在の位置をその段落の先頭に設定します。 |
void |
TextMeasurer.insertChar(AttributedCharacterIterator newParagraph, int insertPos)
この
TextMeasurer が現在表すパラグラフへ1文字を挿入してからTextMeasurer を更新します。 |
コンストラクタと説明 |
---|
LineBreakMeasurer(AttributedCharacterIterator text, BreakIterator breakIter, FontRenderContext frc)
指定されたテキストに対する
LineBreakMeasurer を構築します。 |
LineBreakMeasurer(AttributedCharacterIterator text, FontRenderContext frc)
指定されたテキストに対する
LineBreakMeasurer を構築します。 |
TextLayout(AttributedCharacterIterator text, FontRenderContext frc)
書式付きテキストのイテレータから
TextLayout を構築します。 |
TextMeasurer(AttributedCharacterIterator text, FontRenderContext frc)
ソース・テキストから
TextMeasurer を構築します。 |
修飾子と型 | メソッドと説明 |
---|---|
AttributedCharacterIterator |
InputMethodRequests.cancelLatestCommittedText(AttributedCharacterIterator.Attribute[] attributes)
テキスト編集コンポーネントから最新の確定テキストを取得して、コンポーネントのテキスト本体からそのテキストを削除します。
|
AttributedCharacterIterator |
InputMethodRequests.getCommittedText(int beginIndex, int endIndex, AttributedCharacterIterator.Attribute[] attributes)
未確定テキスト以外の、テキスト編集コンポーネントに含まれるテキストおよび属性の全体に、アクセスするイテレータを取得します。
|
AttributedCharacterIterator |
InputMethodRequests.getSelectedText(AttributedCharacterIterator.Attribute[] attributes)
現在選択されているテキストをテキスト編集コンポーネントから取得します。
|
修飾子と型 | メソッドと説明 |
---|---|
void |
InputMethodContext.dispatchInputMethodEvent(int id, AttributedCharacterIterator text, int committedCharacterCount, TextHitInfo caret, TextHitInfo visiblePosition)
指定された引数でインプット・メソッド・イベントを作成して、そのイベントをクライアント・コンポーネントにディスパッチします。
|
修飾子と型 | メソッドと説明 |
---|---|
AttributedCharacterIterator |
Format.formatToCharacterIterator(Object obj)
Objectをフォーマットし、
AttributedCharacterIterator を生成します。 |
AttributedCharacterIterator |
MessageFormat.formatToCharacterIterator(Object arguments)
オブジェクトの配列をフォーマットし、それを
MessageFormat のパターンに挿入して、AttributedCharacterIterator を生成します。 |
AttributedCharacterIterator |
DecimalFormat.formatToCharacterIterator(Object obj)
Objectをフォーマットし、
AttributedCharacterIterator を生成します。 |
AttributedCharacterIterator |
SimpleDateFormat.formatToCharacterIterator(Object obj)
Objectをフォーマットし、
AttributedCharacterIterator を生成します。 |
AttributedCharacterIterator |
AttributedString.getIterator()
この文字列の内容全体にアクセスできるAttributedCharacterIteratorインスタンスを作成します。
|
AttributedCharacterIterator |
AttributedString.getIterator(AttributedCharacterIterator.Attribute[] attributes)
この文字列の選択された内容にアクセスできるAttributedCharacterIteratorインスタンスを作成します。
|
AttributedCharacterIterator |
AttributedString.getIterator(AttributedCharacterIterator.Attribute[] attributes, int beginIndex, int endIndex)
この文字列の選択された内容にアクセスできるAttributedCharacterIteratorインスタンスを作成します。
|
コンストラクタと説明 |
---|
AttributedString(AttributedCharacterIterator text)
指定されたAttributedCharacterIteratorが表現する属性付きテキストを持つ、AttributedStringインスタンスを構築します。
|
AttributedString(AttributedCharacterIterator text, int beginIndex, int endIndex)
指定されたAttributedCharacterIteratorが表現する属性付きテキストの部分範囲を持つAttributedStringインスタンスを構築します。
|
AttributedString(AttributedCharacterIterator text, int beginIndex, int endIndex, AttributedCharacterIterator.Attribute[] attributes)
指定されたAttributedCharacterIteratorが表現する属性付きテキストの部分範囲を持つAttributedStringインスタンスを構築します。
|
Bidi(AttributedCharacterIterator paragraph)
指定したテキストの段落から双方向を生成します。
|
修飾子と型 | メソッドと説明 |
---|---|
void |
DebugGraphics.drawString(AttributedCharacterIterator iterator, int x, int y)
Graphics.drawString をオーバーライドします。 |
バグまたは機能を送信
詳細なAPIリファレンスおよび開発者ドキュメントについては、Java SEのドキュメントを参照してください。そのドキュメントには、概念的な概要、用語の定義、回避方法、有効なコード例などの、開発者を対象にしたより詳細な説明が含まれています。
Copyright© 1993, 2014, Oracle and/or its affiliates. All rights reserved.