Package org.antlr.works.ate

Examples of org.antlr.works.ate.ATEPanel


    private String file;
    private final XJFileMonitor monitor = new XJFileMonitor();

    public CodeDisplay(XJFrame parentFrame) {
        super(null);
        textEditor = new ATEPanel(parentFrame);
        textEditor.setParserEngine(new ATEJavaSyntaxEngine());
        textEditor.setSyntaxColoring(true);
        textEditor.setAnalysisColumnVisible(false);
        textEditor.setFoldingEnabled(AWPrefs.getFoldingEnabled());
        textEditor.setLineNumberEnabled(AWPrefs.getLineNumberEnabled());
View Full Code Here


        getContentPane().add(mainPanel);
        pack();
    }

    private void createTextEditor() {
        textEditor = new ATEPanel(this);
        textEditor.setEditorKit(editorKit = new GrammarEditorKit(this));
        textEditor.setSyntaxColoring(true);
        textEditor.setDelegate(this);

        gutterColumnManager = new EditorGutterColumnManager(this);
View Full Code Here

TOP

Related Classes of org.antlr.works.ate.ATEPanel

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.