swingwtx.swing.text
Class EditorKit
java.lang.Object
swingwtx.swing.text.EditorKit
- All Implemented Interfaces:
- java.lang.Cloneable, java.io.Serializable
- Direct Known Subclasses:
- DefaultEditorKit
- public abstract class EditorKit
- extends java.lang.Object
- implements java.lang.Cloneable, java.io.Serializable
- See Also:
- Serialized Form
Method Summary |
java.lang.Object |
clone()
|
abstract Document |
createDefaultDocument()
|
void |
deinstall(JEditorPane c)
|
abstract Action[] |
getActions()
|
abstract java.lang.String |
getContentType()
|
void |
install(JEditorPane c)
|
abstract void |
read(java.io.InputStream in,
Document doc,
int pos)
|
abstract void |
read(java.io.Reader in,
Document doc,
int pos)
|
abstract void |
write(java.io.OutputStream out,
Document doc,
int pos,
int len)
|
abstract void |
write(java.io.Writer out,
Document doc,
int pos,
int len)
|
Methods inherited from class java.lang.Object |
equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
EditorKit
public EditorKit()
clone
public java.lang.Object clone()
install
public void install(JEditorPane c)
deinstall
public void deinstall(JEditorPane c)
getContentType
public abstract java.lang.String getContentType()
getActions
public abstract Action[] getActions()
createDefaultDocument
public abstract Document createDefaultDocument()
read
public abstract void read(java.io.InputStream in,
Document doc,
int pos)
throws java.io.IOException,
BadLocationException
- Throws:
java.io.IOException
BadLocationException
write
public abstract void write(java.io.OutputStream out,
Document doc,
int pos,
int len)
throws java.io.IOException,
BadLocationException
- Throws:
java.io.IOException
BadLocationException
read
public abstract void read(java.io.Reader in,
Document doc,
int pos)
throws java.io.IOException,
BadLocationException
- Throws:
java.io.IOException
BadLocationException
write
public abstract void write(java.io.Writer out,
Document doc,
int pos,
int len)
throws java.io.IOException,
BadLocationException
- Throws:
java.io.IOException
BadLocationException