Package com.salesforce.ide.ui.editors.apex.outline

Examples of com.salesforce.ide.ui.editors.apex.outline.ApexContentOutlinePage


    @Override
    @SuppressWarnings("unchecked")
    public Object getAdapter(Class required) {
        if (IContentOutlinePage.class.equals(required)) {
            if (fOutlinePage == null) {
                fOutlinePage = new ApexContentOutlinePage();
                if (getEditorInput() != null) {
                    outlineSelectionChangedListener.install(fOutlinePage);
                }
            }
            return fOutlinePage;
View Full Code Here


        if (canDisplayOutline()) {
            Display.getDefault().asyncExec(new Runnable() {

                @Override
                public void run() {
                    ApexContentOutlinePage outline =
                            (ApexContentOutlinePage) apexReconcilingStrategy.fTextEditor
                                    .getAdapter(IContentOutlinePage.class);
                    outline.update(fCompilationUnit);
                }
            });
        }
    }
View Full Code Here

TOP

Related Classes of com.salesforce.ide.ui.editors.apex.outline.ApexContentOutlinePage

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.