Package org.fife.ui.rsyntaxtextarea

Examples of org.fife.ui.rsyntaxtextarea.ErrorStrip$Marker


        scrollPane.addBreakpointModificationListener(this);
        scrollPane.setLineNumbersEnabled(true);
        panel1.add(scrollPane);
        scriptPane.setText(script.getScript());
        scriptPane.setDirty(false);
        ErrorStrip es = scriptPane.getErrorStrip();
        if (es != null)
            panel1.add(es, BorderLayout.LINE_END);
        // Update breakpoints...
        for(int line: script.breakpoints.descendingKeySet()) {
            scrollPane.addBreakpoint(line);
View Full Code Here

TOP

Related Classes of org.fife.ui.rsyntaxtextarea.ErrorStrip$Marker

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.