java.lang.Object
javax.swing.text.AbstractDocument.AbstractElement
javax.swing.text.AbstractDocument.LeafElement
javax.swing.text.html.HTMLDocument.RunElement
- すべての実装されたインタフェース:
- Serializable,- AttributeSet,- Element,- MutableAttributeSet,- TreeNode
- 含まれているクラス:
- HTMLDocument
public class HTMLDocument.RunElement extends AbstractDocument.LeafElement
HTML文字レベル属性のセットが割り当てられているテキストのチャンクを表す要素です。
- 
ネストされたクラスのサマリーインタフェース javax.swing.text.AttributeSetで宣言されたネストされたクラス/インタフェースAttributeSet.CharacterAttribute, AttributeSet.ColorAttribute, AttributeSet.FontAttribute, AttributeSet.ParagraphAttribute
- 
フィールドのサマリー
- 
コンストラクタのサマリーコンストラクタ コンストラクタ 説明 RunElement(Element parent, AttributeSet a, int offs0, int offs1)ドキュメント内のコンテンツを表す(子を持たない)要素を作成します。
- 
メソッドのサマリー修飾子と型 メソッド 説明 StringgetName()要素の名前を返します。AttributeSetgetResolveParent()解釈処理側の親を返します。クラス javax.swing.text.AbstractDocument.LeafElementで宣言されたメソッドchildren, getAllowsChildren, getElement, getElementCount, getElementIndex, getEndOffset, getStartOffset, isLeaf, toStringクラス javax.swing.text.AbstractDocument.AbstractElementで宣言されたメソッドaddAttribute, addAttributes, containsAttribute, containsAttributes, copyAttributes, dump, getAttribute, getAttributeCount, getAttributeNames, getAttributes, getChildAt, getChildCount, getDocument, getIndex, getParent, getParentElement, isDefined, isEqual, removeAttribute, removeAttributes, removeAttributes, setResolveParent
- 
コンストラクタの詳細- 
RunElementpublic RunElement(Element parent, AttributeSet a, int offs0, int offs1)ドキュメント内のコンテンツを表す(子を持たない)要素を作成します。- パラメータ:
- parent- 親要素
- a- 要素の属性
- offs0- 開始オフセット(最小でも0でなければならない)
- offs1- 終了オフセット(最小でもoffs0でなければならない)
- 導入されたバージョン:
- 1.4
 
 
- 
- 
メソッドの詳細- 
getNamepublic String getName()要素の名前を返します。- 定義:
- getName、インタフェース:- Element
- オーバーライド:
- getName、クラス:- AbstractDocument.LeafElement
- 戻り値:
- 名前。ない場合はnull
 
- 
getResolveParentpublic AttributeSet getResolveParent()解釈処理側の親を返します。 HTML属性はモデル・レベルでは継承されないので、nullを返すように、このメソッドをオーバーライドします。- 定義:
- getResolveParent、インタフェース:- AttributeSet
- オーバーライド:
- getResolveParent、クラス:- AbstractDocument.AbstractElement
- 戻り値:
- 親がない場合はnull
- 関連項目:
- AttributeSet.getResolveParent()
 
 
-