Описание тега jeditorpane
A Java Swing text component to edit various kinds of content.
A Java Swing text component to edit various kinds of content. By default, the following types of content are known:
- text/plain: plain text, which is the default the type given isn't recognized. The kit used in this case is an extension of DefaultEditorKit that produces a wrapped plain text view
- text/plain: Styled text, the kit used in
this case is the class
javax.swing.text.StyledEditorKit
which provides text with formatting basement to be used in the next EditorKits. - text/html: HTML text, the kit used in
this case is the class
javax.swing.text.html.HTMLEditorKit
which provides HTML 3.2 support. HTML content is not editable. - text/rtf: RTF text, the kit used in
this case is the class
javax.swing.text.rtf.RTFEditorKit
which provides a limited support of the Rich Text Format.