package javax.swing.text; import javax.swing.*; import java.io.*; public class DefaultEditorKit extends EditorKit { void deinstall(JEditorPane c) { // Called when the kit is being removed from the JEditorPane. } void install(JEditorPane c) { } Caret createCaret() { return null; } Document createDefaultDocument() { return new PlainDocument(); } Action[] getActions() { return null; } String getContentType() { return "text/plain"; } ViewFactory getViewFactory() { return null; } void read(InputStream in, Document doc, int pos) { } void read(Reader in, Document doc, int pos) { } void write(OutputStream out, Document doc, int pos, int len) { } void write(Writer out, Document doc, int pos, int len) { } }