|
|||||||||
摘要: 嵌套 | 字段 | 构造方法 | 方法 | 详细信息: 字段 | 构造方法 | 方法 |
javax.swing.text
类 EditorKit
java.lang.Object javax.swing.text.EditorKit
- 所有已实现的接口:
- Serializable, Cloneable
- 直接已知子类:
- DefaultEditorKit
-
public abstract class EditorKit
- extends Object
- implements Cloneable, Serializable
针对某些类型 的文本内容,建立能够合理发挥编辑器功能的文本组件所需的实现集合。EditorKit 充当某个策略类型的工厂。例如,可以提供 html 和 rtf 的实现,它可与其他实现互换。
工具包可安全存储编辑状态,因为工具包的实例专供文本组件使用。新的工具包通常通过克隆原型工具包创建。工具包会调用其 setComponent
方法来建立与 JTextComponent 的联系。
构造方法摘要 | |
---|---|
EditorKit() 构造一个 EditorKit。 |
方法摘要 | |
---|---|
Object |
clone() 创建此编辑器工具包的副本。 |
abstract Caret |
createCaret() 获取能在由关联的 ViewFactory 生成的视图中导航的插入符。 |
abstract Document |
createDefaultDocument() 创建一个适合此编辑器类型的未初始化的文本存储模型。 |
void |
deinstall(JEditorPane c) 从 JEditorPane 中移除工具包时调用。 |
abstract Action[] |
getActions() 获取能在文本组件上使用的一组命令,该文本组件使用由此工具包生成的模型和视图。 |
abstract String |
getContentType() 获得此工具包声明支持的数据的 MIME 类型。 |
abstract ViewFactory |
getViewFactory() 获取适合生成此工具包生成的任何模型视图的工厂。 |
void |
install(JEditorPane c) 将工具包安装到 JEditorPane 中时调用。 |
abstract void |
read(InputStream in, Document doc, int pos) 插入来自给定流的内容,其格式需要适合此类型的内容处理程序。 |
abstract void |
read(Reader in, Document doc, int pos) 插入来自给定流的内容,其格式需要适合此类型的内容处理程序。 |
abstract void |
write(OutputStream out, Document doc, int pos, int len) 将文档中的内容以适合此类型内容处理程序的格式写入给定的流。 |
abstract void |
write(Writer out, Document doc, int pos, int len) 将文档中的内容以适合此类型内容处理程序的格式写入给定的流。 |
从类 java.lang.Object 继承的方法 |
---|
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
构造方法详细信息 |
---|
EditorKit
public EditorKit()
- 构造一个 EditorKit。
方法详细信息 |
---|
clone
public Object clone()
install
public void install(JEditorPane c)
- 将工具包安装到 JEditorPane 中时调用。
-
-
- 参数:
c
- JEditorPane
deinstall
public void deinstall(JEditorPane c)
- 从 JEditorPane 中移除工具包时调用。这可用于取消对任何所关联侦听器的注册。
-
-
- 参数:
c
- JEditorPane
getContentType
public abstract String getContentType()
- 获得此工具包声明支持的数据的 MIME 类型。
-
-
- 返回:
- 类型
getViewFactory
public abstract ViewFactory getViewFactory()
- 获取适合生成此工具包生成的任何模型视图的工厂。
-
-
- 返回:
- 工厂
getActions
public abstract Action[] getActions()
- 获取能在文本组件上使用的一组命令,该文本组件使用由此工具包生成的模型和视图。
-
-
- 返回:
- 动作组
createCaret
public abstract Caret createCaret()
- 获取能在由关联的 ViewFactory 生成的视图中导航的插入符。
-
-
- 返回:
- 插入符