| Package | Description | 
|---|---|
| javax.swing | Provides a set of "lightweight"
(all-Java language) components that,
to the maximum degree possible, work the same on all platforms. | 
| javax.swing.plaf | Provides one interface and many abstract classes that
Swing uses to provide its pluggable look-and-feel capabilities. | 
| javax.swing.plaf.basic | Provides user interface objects built according to the
Basic look and feel. | 
| javax.swing.plaf.multi | Provides user interface objects that combine two or more look and feels. | 
| javax.swing.text | Provides classes and interfaces that deal with editable
and noneditable text components. | 
| javax.swing.text.html | Provides the class  HTMLEditorKitand supporting classes
for creating HTML text editors. | 
| javax.swing.text.rtf | Provides a class ( RTFEditorKit) for creating Rich-Text-Format
text editors. | 
| Modifier and Type | Method and Description | 
|---|---|
| protected EditorKit | JTextPane. createDefaultEditorKit()Creates the  EditorKitto use by default. | 
| protected EditorKit | JEditorPane. createDefaultEditorKit()Creates the default editor kit ( PlainEditorKit) for when
 the component is first created. | 
| static EditorKit | JEditorPane. createEditorKitForContentType(String type)Creates a handler for the given type from the default registry
 of editor kits. | 
| EditorKit | JEditorPane. getEditorKit()Fetches the currently installed kit for handling content. | 
| EditorKit | JEditorPane. getEditorKitForContentType(String type)Fetches the editor kit to use for the given type
 of content. | 
| Modifier and Type | Method and Description | 
|---|---|
| void | JTextPane. setEditorKit(EditorKit kit)Sets the currently installed kit for handling
 content. | 
| void | JEditorPane. setEditorKit(EditorKit kit)Sets the currently installed kit for handling
 content. | 
| void | JEditorPane. setEditorKitForContentType(String type,
                          EditorKit k)Directly sets the editor kit to use for the given type. | 
| Modifier and Type | Method and Description | 
|---|---|
| abstract EditorKit | TextUI. getEditorKit(JTextComponent t)Fetches the binding of services that set a policy
 for the type of document being edited. | 
| Modifier and Type | Method and Description | 
|---|---|
| EditorKit | BasicEditorPaneUI. getEditorKit(JTextComponent tc)Fetches the EditorKit for the UI. | 
| EditorKit | BasicTextUI. getEditorKit(JTextComponent tc)Fetches the EditorKit for the UI. | 
| Modifier and Type | Method and Description | 
|---|---|
| EditorKit | MultiTextUI. getEditorKit(JTextComponent a)Invokes the  getEditorKitmethod on each UI handled by this object. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | DefaultEditorKitThis is the set of things needed by a text component
 to be a reasonably functioning editor for some type
 of text document. | 
| class  | StyledEditorKitThis is the set of things needed by a text component
 to be a reasonably functioning editor for some type
 of text document. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | HTMLEditorKitThe Swing JEditorPane text component supports different kinds
 of content via a plug-in mechanism called an EditorKit. | 
| Modifier and Type | Class and Description | 
|---|---|
| class  | RTFEditorKitThis is the default implementation of RTF editing
 functionality. | 
 Submit a bug or feature 
For further API reference and developer documentation, see Java SE Documentation. That documentation contains more detailed, developer-targeted descriptions, with conceptual overviews, definitions of terms, workarounds, and working code examples.
 Copyright © 1993, 2015, Oracle and/or its affiliates.  All rights reserved.