home *** CD-ROM | disk | FTP | other *** search
/ PC Professionell 2005 February / PCpro_2005_02.ISO / files / opensource / jEdit_4.2 / jedit42install.exe / {app} / jars / QuickNotepad.jar / QuickNotepadTextArea.class (.txt) < prev    next >
Encoding:
Java Class File  |  2004-08-26  |  245 b   |  10 lines

  1. import javax.swing.JTextArea;
  2.  
  3. public class QuickNotepadTextArea extends JTextArea {
  4.    public QuickNotepadTextArea() {
  5.       this.setLineWrap(true);
  6.       this.setWrapStyleWord(true);
  7.       this.setTabSize(4);
  8.    }
  9. }
  10.