Example usage for Java javax.swing.text EditorKit fields, constructors, methods, implement or subclass
The text is from its open source code.
Document | createDefaultDocument() Creates an uninitialized text storage model that is appropriate for this type of editor. |
void | read(InputStream in, Document doc, int pos) Inserts content from the given stream which is expected to be in a format appropriate for this kind of content handler. |
void | read(Reader in, Document doc, int pos) Inserts content from the given stream which is expected to be in a format appropriate for this kind of content handler. |
void | write(OutputStream out, Document doc, int pos, int len) Writes content from a document to the given stream in a format appropriate for this kind of content handler. |
void | write(Writer out, Document doc, int pos, int len) Writes content from a document to the given stream in a format appropriate for this kind of content handler. |