Package lupos.gui.operatorgraph.visualeditor.visualrif.util

Examples of lupos.gui.operatorgraph.visualeditor.visualrif.util.VisualRifJTextPane


  public RifCodeEditor(){
    super();

    final LuposDocument document = new LuposDocument();
    this.tp_rifInput = new VisualRifJTextPane(document);
    this.tp_rifInput.setFont(new Font("Courier", Font.PLAIN, 12));
    this.tp_rifInput.setTabWidth(4);
    document.init(lupos.gui.anotherSyntaxHighlighting.javacc.RIFParser.createILuposParser(new LuposDocumentReader(document)), true, 100);
    this.setRifInputSP(new JScrollPane(this.tp_rifInput));
    final TextLineNumber tln = new TextLineNumber(this.tp_rifInput);
View Full Code Here

TOP

Related Classes of lupos.gui.operatorgraph.visualeditor.visualrif.util.VisualRifJTextPane

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.