Package org.erlide.wrangler.refactoring.codeinspection.view

Examples of org.erlide.wrangler.refactoring.codeinspection.view.CodeInspectionResultsView.addElements()


    static public void showErlElements(final String title,
            final ArrayList<IErlElement> e, final String secId) {
        try {
            final CodeInspectionResultsView v = (CodeInspectionResultsView) showView(
                    CODE_INSPECTION_VIEW, secId);
            v.addElements(e);
            v.setViewTitle(title);
            v.refresh();
        } catch (final Exception ex) {
            ex.printStackTrace();
        }
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.