JavaTM 2 Platform
Standard Ed. 6

javax.swing.text
類別 DefaultStyledDocument.ElementSpec

java.lang.Object
  繼承者 javax.swing.text.DefaultStyledDocument.ElementSpec
正在封閉類別:
DefaultStyledDocument

public static class DefaultStyledDocument.ElementSpec
extends Object

建構元素的規範。

警告:此類別的已序列化物件與以後的 Swing 版本不相容。當前序列化支持適用於短期存儲或運行相同 Swing 版本的應用程序之間的 RMI。從 1.4 版本開始,已在 java.beans 套件中添加了支持所有 JavaBeansTM 長期存儲的功能。請參見 XMLEncoder


欄位摘要
static short ContentType
          getType 的可能值。
static short EndTagType
          getType 的可能值。
static short JoinFractureDirection
          getDirection 的可能值。
static short JoinNextDirection
          getDirection 的可能值。
static short JoinPreviousDirection
          getDirection 的可能值。
static short OriginateDirection
          getDirection 的可能值。
static short StartTagType
          getType 的可能值。
 
建構子摘要
DefaultStyledDocument.ElementSpec(AttributeSet a, short type)
          當標記不在文檔中存儲時供標記使用的建構子。
DefaultStyledDocument.ElementSpec(AttributeSet a, short type, char[] txt, int offs, int len)
          用於外部創建規範的建構子,供批量輸入內容和標記到文檔中。
DefaultStyledDocument.ElementSpec(AttributeSet a, short type, int len)
          供文檔內部解析使用的建構子,在資料已添加但還需要 len 資訊時使用。
 
方法摘要
 char[] getArray()
          獲得字元陣列。
 AttributeSet getAttributes()
          獲得元素屬性。
 short getDirection()
          獲得方向。
 int getLength()
          獲得長度。
 int getOffset()
          獲得起始偏移量。
 short getType()
          獲得元素型別。
 void setDirection(short direction)
          設置方向。
 void setType(short type)
          設置元素型別。
 String toString()
          將元素轉換為字元串。
 
從類別 java.lang.Object 繼承的方法
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

欄位詳細資訊

StartTagType

public static final short StartTagType
getType 的可能值。它指定此記錄型別為開始標記,同時表示指定元素開始的標記。

另請參見:
常數欄位值

EndTagType

public static final short EndTagType
getType 的可能值。它指定此記錄型別為結束標記,同時表示指定元素結束的標記。

另請參見:
常數欄位值

ContentType

public static final short ContentType
getType 的可能值。它指定此記錄型別表示內容。

另請參見:
常數欄位值

JoinPreviousDirection

public static final short JoinPreviousDirection
getDirection 的可能值。它指定與此記錄關聯的資料應與位於它之前的元素連接。

另請參見:
常數欄位值

JoinNextDirection

public static final short JoinNextDirection
getDirection 的可能值。它指定與此記錄關聯的資料應與跟隨它的元素連接。

另請參見:
常數欄位值

OriginateDirection

public static final short OriginateDirection
getDirection 的可能值。它指定與此記錄關聯的資料應用於產生新元素。這將是正常的值。

另請參見:
常數欄位值

JoinFractureDirection

public static final short JoinFractureDirection
getDirection 的可能值。它指定與此記錄關聯的資料應與離散的元素連接。

另請參見:
常數欄位值
建構子詳細資訊

DefaultStyledDocument.ElementSpec

public DefaultStyledDocument.ElementSpec(AttributeSet a,
                                         short type)
當標記不在文檔中存儲時供標記使用的建構子。

參數:
a - 元素的屬性
type - 元素型別(StartTagType、EndTagType 和 ContentType)

DefaultStyledDocument.ElementSpec

public DefaultStyledDocument.ElementSpec(AttributeSet a,
                                         short type,
                                         int len)
供文檔內部解析使用的建構子,在資料已添加但還需要 len 資訊時使用。

參數:
a - 元素的屬性
type - 元素型別(StartTagType、EndTagType 和 ContentType)
len - 長度,該長度 >= 0

DefaultStyledDocument.ElementSpec

public DefaultStyledDocument.ElementSpec(AttributeSet a,
                                         short type,
                                         char[] txt,
                                         int offs,
                                         int len)
用於外部創建規範的建構子,供批量輸入內容和標記到文檔中。

參數:
a - 元素的屬性
type - 元素型別(StartTagType、EndTagType 和 ContentType)
txt - 元素的文本
offs - 文本偏移量,該偏移量 >= 0
len - 文本長度,該長度 >= 0
方法詳細資訊

setType

public void setType(short type)
設置元素型別。

參數:
type - 元素型別(StartTagType、EndTagType 和 ContentType)

getType

public short getType()
獲得元素型別。

返回:
元素型別(StartTagType、EndTagType 和 ContentType)

setDirection

public void setDirection(short direction)
設置方向。

參數:
direction - 方向(JoinPreviousDirection、JoinNextDirection)

getDirection

public short getDirection()
獲得方向。

返回:
方向(JoinPreviousDirection 和 JoinNextDirection)

getAttributes

public AttributeSet getAttributes()
獲得元素屬性。

返回:
屬性集

getArray

public char[] getArray()
獲得字元陣列。

返回:
陣列

getOffset

public int getOffset()
獲得起始偏移量。

返回:
偏移量,該偏移量 >= 0

getLength

public int getLength()
獲得長度。

返回:
長度,該長度 >= 0

toString

public String toString()
將元素轉換為字元串。

覆寫:
類別 Object 中的 toString
返回:
字元串

JavaTM 2 Platform
Standard Ed. 6

提交錯誤或意見

版權所有 2008 Sun Microsystems, Inc. 保留所有權利。請遵守GNU General Public License, version 2 only