KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > net > suberic > pooka > gui > MailEditorKit


1 package net.suberic.pooka.gui;
2 import javax.swing.text.StyledEditorKit JavaDoc;
3 import javax.swing.text.ViewFactory JavaDoc;
4
5 /**
6  * This class is an EditorKit for editing new email messages.
7  */

8
9 public class MailEditorKit extends StyledEditorKit JavaDoc {
10
11     public ViewFactory JavaDoc getViewFactory() {
12     return new MailViewFactory();
13     }
14
15     
16 }
17
Popular Tags