|
|||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
javax.swing.text
类 StringContent
java.lang.Object javax.swing.text.StringContent
- 所有已实现的接口:
- Serializable, AbstractDocument.Content
-
public final class StringContent
- extends Object
- implements AbstractDocument.Content, Serializable
AbstractDocument.Content 接口的一个实现,这是一个对相对于较小的文档和/或调试很有用的强制实现。它只能管理简单字符数组中的字符内容。而且其效率很低。
通常建议使用间隙缓冲区或拼凑表实现。此缓冲区无法扩展为大尺寸。
警告:此类的已序列化对象与以后的 Swing 版本不兼容。当前序列化支持适用于短期存储或运行相同 Swing 版本的应用程序之间的 RMI。从 1.4 版本开始,已在 java.beans
包中添加了支持所有 JavaBeansTM 长期存储的功能。请参见 XMLEncoder
。
构造方法摘要 | |
---|---|
StringContent() 创建新的 StringContent 对象。 |
|
StringContent(int initialLength) 创建具有指定初始大小的新 StringContent。 |
方法摘要 | |
---|---|
Position |
createPosition(int offset) 在内容中创建一个位置,让其跟踪随内容的变化而进行的更改。 |
void |
getChars(int where, int len, Segment chars) 检索内容的某一部分,where + len 必须 <= length() |
protected Vector |
getPositionsInRange(Vector v, int offset, int length) 返回一个包含 UndoPosRef 实例的 Vector,其 Position 的范围从 offset 到 offset + length 。 |
String |
getString(int where, int len) 检索内容的某一部分,where + len 必须 <= length()。 |
UndoableEdit |
insertString(int where, String str) 将字符串插入到内容中。 |
int |
length() 返回内容的长度。 |
UndoableEdit |
remove(int where, int nitems) 移除部分内容,其中 where + nitems 必须 < length()。 |
protected void |
updateUndoPositions(Vector positions) 在 positions 处重新设置所有 UndoPosRef 实例的位置。 |
从类 java.lang.Object 继承的方法 |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
StringContent
public StringContent()
- 创建新的 StringContent 对象。初始大小默认为 10。
StringContent
public StringContent(int initialLength)
-
创建具有指定初始大小的新 StringContent。如果长度小于 1,大小将为 1。
- 参数:
initialLength
- 初始大小
方法详细信息 |
---|
length
public int length()
- 返回内容的长度。
-
- 指定者:
-
接口
AbstractDocument.Content
中的length
-
- 返回:
- 长度,该值 >= 1
- 另请参见:
AbstractDocument.Content.length()
insertString
public UndoableEdit insertString(int where, String str) throws BadLocationException
- 将字符串插入到内容中。
-
- 指定者:
-
接口
AbstractDocument.Content
中的insertString
-
- 参数:
where
- 起始位置,该值 >= 0 且 < length()str
- 要插入的非 null 字符串- 返回:
- 撤消的 UndoableEdit 对象
- 抛出:
BadLocationException
- 如果指定位置无效- 另请参见:
AbstractDocument.Content.insertString(int, java.lang.String)
remove
public UndoableEdit remove(int where, int nitems) throws BadLocationException
- 移除部分内容,其中 where + nitems 必须 < length()。
-
- 指定者:
-
接口
AbstractDocument.Content
中的remove
-
- 参数:
where
- 起始位置,该值 >= 0nitems
- 要移除的字符数,该值 >= 0- 返回:
- 撤消的 UndoableEdit 对象
- 抛出:
BadLocationException
- 如果指定位置无效- 另请参见:
AbstractDocument.Content.remove(int, int)
getString
public String getString(int where, int len) throws BadLocationException
- 检索内容的某一部分,where + len 必须 <= length()。
-
- 指定者:
-
接口
AbstractDocument.Content
中的getString
-
- 参数:
where
- 起始位置,该值 >= 0len
- 要检索的长度,该值 >= 0- 返回:
- 一个表示该内容的字符串;该字符串可能为空
- 抛出:
BadLocationException
- 如果指定位置无效- 另请参见:
AbstractDocument.Content.getString(int, int)
getChars
public void getChars(int where, int len, Segment chars) throws BadLocationException
- 检索内容的某一部分,where + len 必须 <= length()
-
- 指定者:
-
接口
AbstractDocument.Content
中的getChars
-
- 参数:
where
- 起始位置,该值 >= 0len
- 要检索的字符数,该值 >= 0chars
- 要在其中返回字符的 Segment 对象- 抛出:
BadLocationException
- 如果指定位置无效- 另请参见:
AbstractDocument.Content.getChars(int, int, javax.swing.text.Segment)
createPosition
public Position createPosition(int offset) throws BadLocationException
- 在内容中创建一个位置,让其跟踪随内容的变化而进行的更改。
-
- 指定者:
-
接口
AbstractDocument.Content
中的createPosition
-
- 参数:
offset
- 所创建位置的偏移量,该值 >= 0- 返回:
- 位置
- 抛出:
BadLocationException
- 如果指定位置无效