Method from javax.swing.text.PlainEditorKit Detail: |
protected Object clone() {
return new PlainEditorKit(this);
}
|
Caret createCaret() {
return null;
}
|
Document createDefaultDocument() {
return null;
}
|
void deinstall(JEditorPane c) {
// Called when the kit is being removed from the JEditorPane.
}
|
Action[] getActions() {
return null;
}
|
String getContentType() {
return null;
}
|
ViewFactory getViewFactory() {
return null;
}
|
void install(JEditorPane c) {
}
|
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) {
}
|