Uses of Class
javax.swing.text.EditorKit
Packages that use EditorKit
Package
Description
Provides a set of "lightweight" (all-Java language) components
 that, to the maximum degree possible, work the same on all platforms.
Provides one interface and many abstract classes that Swing uses to provide
 its pluggable look-and-feel capabilities.
Provides user interface objects built according to the Basic look and feel.
Provides user interface objects that combine two or more look and feels.
Provides classes and interfaces that deal with editable and noneditable text
 components.
Provides the class 
HTMLEditorKit and supporting classes for creating
 HTML text editors.Provides a class (
RTFEditorKit) for creating Rich-Text-Format text
 editors.- 
Uses of EditorKit in javax.swingMethods in javax.swing that return EditorKitModifier and TypeMethodDescriptionprotected EditorKitJEditorPane.createDefaultEditorKit()Creates the default editor kit (PlainEditorKit) for when the component is first created.protected EditorKitJTextPane.createDefaultEditorKit()Creates theEditorKitto use by default.static EditorKitJEditorPane.createEditorKitForContentType(String type) Creates a handler for the given type from the default registry of editor kits.JEditorPane.getEditorKit()Fetches the currently installed kit for handling content.JEditorPane.getEditorKitForContentType(String type) Fetches the editor kit to use for the given type of content.Methods in javax.swing with parameters of type EditorKitModifier and TypeMethodDescriptionvoidJEditorPane.setEditorKit(EditorKit kit) Sets the currently installed kit for handling content.final voidJTextPane.setEditorKit(EditorKit kit) Sets the currently installed kit for handling content.voidJEditorPane.setEditorKitForContentType(String type, EditorKit k) Directly sets the editor kit to use for the given type.
- 
Uses of EditorKit in javax.swing.plafMethods in javax.swing.plaf that return EditorKitModifier and TypeMethodDescriptionabstract EditorKitTextUI.getEditorKit(JTextComponent t) Fetches the binding of services that set a policy for the type of document being edited.
- 
Uses of EditorKit in javax.swing.plaf.basicMethods in javax.swing.plaf.basic that return EditorKitModifier and TypeMethodDescriptionBasicEditorPaneUI.getEditorKit(JTextComponent tc) Fetches the EditorKit for the UI.BasicTextUI.getEditorKit(JTextComponent tc) Fetches the EditorKit for the UI.
- 
Uses of EditorKit in javax.swing.plaf.multiMethods in javax.swing.plaf.multi that return EditorKitModifier and TypeMethodDescriptionMultiTextUI.getEditorKit(JTextComponent a) Invokes thegetEditorKitmethod on each UI handled by this object.
- 
Uses of EditorKit in javax.swing.textSubclasses of EditorKit in javax.swing.textModifier and TypeClassDescriptionclassThis is the set of things needed by a text component to be a reasonably functioning editor for some type of text document.classThis is the set of things needed by a text component to be a reasonably functioning editor for some type of text document.
- 
Uses of EditorKit in javax.swing.text.htmlSubclasses of EditorKit in javax.swing.text.htmlModifier and TypeClassDescriptionclassThe Swing JEditorPane text component supports different kinds of content via a plug-in mechanism called an EditorKit.
- 
Uses of EditorKit in javax.swing.text.rtfSubclasses of EditorKit in javax.swing.text.rtfModifier and TypeClassDescriptionclassThis is the default implementation of RTF editing functionality.