Uses of Class
javax.swing.text.EditorKit
-
Packages that use EditorKit 软件包 描述 javax.swing 提供一套“轻量级”(全Java语言)组件,尽可能地在所有平台上工作。javax.swing.plaf 提供一个接口和许多抽象类,Swing用来提供其可插拔的外观和感觉功能。javax.swing.plaf.basic 提供根据“基本”外观构建的用户界面对象。javax.swing.plaf.multi 提供组合两种或多种外观和感觉的用户界面对象。javax.swing.text 提供处理可编辑和不可编辑文本组件的类和接口。javax.swing.text.html 提供类HTMLEditorKit和支持类创建HTML文本编辑器。javax.swing.text.rtf 提供用于创建Rich-Text-Format文本编辑器的类(RTFEditorKit)。 -
-
Uses of EditorKit in javax.swing
Methods in javax.swing that return EditorKit Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 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 Modifier and Type 方法 描述 abstract EditorKitTextUI. getEditorKit(JTextComponent t)获取为正在编辑的文档类型设置策略的服务的绑定。 -
Uses of EditorKit in javax.swing.plaf.basic
Methods in javax.swing.plaf.basic that return EditorKit Modifier and Type 方法 描述 EditorKitBasicEditorPaneUI. getEditorKit(JTextComponent tc)获取用户界面的EditorKit。EditorKitBasicTextUI. getEditorKit(JTextComponent tc)获取用户界面的EditorKit。 -
Uses of EditorKit in javax.swing.plaf.multi
Methods in javax.swing.plaf.multi that return EditorKit Modifier and Type 方法 描述 EditorKitMultiTextUI. getEditorKit(JTextComponent a)在此对象处理的每个UI上调用getEditorKit方法。 -
Uses of EditorKit in javax.swing.text
Subclasses of EditorKit in javax.swing.text Modifier and Type Class 描述 classDefaultEditorKit这是文本组件所需的一组事物,作为某种 类型的文本文档的合理功能的编辑器。classStyledEditorKit这是文本组件所需的一组事物,作为某种 类型的文本文档的合理功能的编辑器。 -
Uses of EditorKit in javax.swing.text.html
Subclasses of EditorKit in javax.swing.text.html Modifier and Type Class 描述 classHTMLEditorKitSwing JEditorPane文本组件通过称为EditorKit的插件机制来支持不同类型的内容。 -
Uses of EditorKit in javax.swing.text.rtf
Subclasses of EditorKit in javax.swing.text.rtf Modifier and Type Class 描述 classRTFEditorKit这是RTF编辑功能的默认实现。
-