Описание тега 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 classjavax.swing.text.StyledEditorKitwhich provides text with formatting basement to be used in the next EditorKits.
  • text/html: HTML text, the kit used in this case is the classjavax.swing.text.html.HTMLEditorKitwhich provides HTML 3.2 support. HTML content is not editable.
  • text/rtf: RTF text, the kit used in this case is the classjavax.swing.text.rtf.RTFEditorKitwhich provides a limited support of the Rich Text Format.