KickJava   Java API By Example, From Geeks To Geeks.

Java > Java SE, EE, ME > javax > swing > text > EditorKit

javax.swing.text
Class EditorKit

java.lang.Object
  extended by javax.swing.text.EditorKit
All Implemented Interfaces:
Serializable, Cloneable
Direct Known Subclasses:
DefaultEditorKit
See Also:
Top Examples, Source Code

public Object clone()
See Also:
Cloneable
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract Caret createCaret()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract Document createDefaultDocument()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void deinstall(JEditorPane c)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public EditorKit()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract Action[] getActions()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract String getContentType()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract ViewFactory getViewFactory()
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public void install(JEditorPane c)
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract void read(InputStream in,
                          Document doc,
                          int pos)
                   throws IOException,
                          BadLocationException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract void read(Reader in,
                          Document doc,
                          int pos)
                   throws IOException,
                          BadLocationException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract void write(OutputStream out,
                           Document doc,
                           int pos,
                           int len)
                    throws IOException,
                           BadLocationException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  


public abstract void write(Writer out,
                           Document doc,
                           int pos,
                           int len)
                    throws IOException,
                           BadLocationException
Geek's Notes:
Description  Add your codes or notes  Search More Java Examples  

Popular Tags