Package org.jedit.syntax

Examples of org.jedit.syntax.SyntaxDocument


    setEditable(editable);
    setPreferredSize(new Dimension(300, 200));
   
    this.addCaretListener(new CaretListener());
   
    final SyntaxDocument doc = new SyntaxDocument();
    doc.putProperty(PlainDocument.tabSizeAttribute, Integer.valueOf(4));
    setDocument(doc);
    setElectricScroll(2);
   
    final ClientInputHandler inputHandler = new ClientInputHandler();
    inputHandler.addDefaultKeyBindings();
View Full Code Here

TOP

Related Classes of org.jedit.syntax.SyntaxDocument

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.