Uses of Class
javax.swing.text.EditorKit
-
Packages that use EditorKit 软件包 描述 javax.swing 提供一组“轻量级”(全Java语言)组件,这些组件在所有平台上尽可能地工作。javax.swing.plaf 提供一个接口和许多抽象类,Swing使用它们来提供其可插入的外观功能。javax.swing.plaf.basic 提供根据Basic外观构建的用户界面对象。javax.swing.plaf.multi 提供组合两种或多种外观的用户界面对象。javax.swing.text 提供处理可编辑和不可编辑文本组件的类和接口。javax.swing.text.html 提供类HTMLEditorKit以及用于创建HTML文本编辑器的支持类。javax.swing.text.rtf 提供用于创建富文本格式文本编辑器的类(RTFEditorKit)。 -
-
Uses of EditorKit in javax.swing
Methods in javax.swing that return EditorKit 变量和类型 方法 描述 protected EditorKitJEditorPane. createDefaultEditorKit()首次创建组件时,创建默认编辑器工具包(PlainEditorKit)。protected EditorKitJTextPane. createDefaultEditorKit()创建默认情况下使用的EditorKit。static EditorKitJEditorPane. createEditorKitForContentType(String type)从编辑器工具包的默认注册表创建给定类型的处理程序。EditorKitJEditorPane. getEditorKit()获取当前安装的工具包以处理内容。EditorKitJEditorPane. getEditorKitForContentType(String type)获取编辑器工具包以用于给定类型的内容。Methods in javax.swing with parameters of type EditorKit 变量和类型 方法 描述 voidJEditorPane. setEditorKit(EditorKit kit)设置当前安装的用于处理内容的工具包。voidJTextPane. setEditorKit(EditorKit kit)设置当前安装的用于处理内容的工具包。voidJEditorPane. setEditorKitForContentType(String type, EditorKit k)直接设置编辑器工具包以用于给定类型。 -
Uses of EditorKit in javax.swing.plaf
Methods in javax.swing.plaf that return EditorKit 变量和类型 方法 描述 abstract EditorKitTextUI. getEditorKit(JTextComponent t)获取为正在编辑的文档类型设置策略的服务绑定。 -
Uses of EditorKit in javax.swing.plaf.basic
Methods in javax.swing.plaf.basic that return EditorKit 变量和类型 方法 描述 EditorKitBasicEditorPaneUI. getEditorKit(JTextComponent tc)获取UI的EditorKit。EditorKitBasicTextUI. getEditorKit(JTextComponent tc)获取UI的EditorKit。 -
Uses of EditorKit in javax.swing.plaf.multi
Methods in javax.swing.plaf.multi that return EditorKit 变量和类型 方法 描述 EditorKitMultiTextUI. getEditorKit(JTextComponent a)在由此对象处理的每个UI上调用getEditorKit方法。 -
Uses of EditorKit in javax.swing.text
Subclasses of EditorKit in javax.swing.text 变量和类型 类 描述 classDefaultEditorKit这是文本组件成为某种 类型的文本文档的合理功能编辑器所需的一组内容。classStyledEditorKit这是文本组件成为某种 类型的文本文档的合理功能编辑器所需的一组内容。 -
Uses of EditorKit in javax.swing.text.html
Subclasses of EditorKit in javax.swing.text.html 变量和类型 类 描述 classHTMLEditorKitSwing JEditorPane文本组件通过名为EditorKit的插件机制支持不同类型的内容。 -
Uses of EditorKit in javax.swing.text.rtf
Subclasses of EditorKit in javax.swing.text.rtf 变量和类型 类 描述 classRTFEditorKit这是RTF编辑功能的默认实现。
-