Examples of SnippetDialog


Examples of com.salesforce.ide.ui.editors.visualforce.SnippetDialog

    public void init() {}

    @Override
    public void execute(IAction action) {
        VisualForceMultiPageEditor multiPageEditor = getSControlMultiPageEditor();
        SnippetDialog snippetDialog =
                new SnippetDialog(multiPageEditor.getTextEditor().getSite().getShell(), multiPageEditor.getTextEditor());
        try {
            snippetDialog.setSnippetDialogController(new SnippetDialogController());
        } catch (ForceProjectException e) {
            logger.warn("Unable to get snippet controller", e);
            Utils.openError("Action Error", "Unable to open Merge Field: " + e.getMessage());
            return;
        }
        IFile file = multiPageEditor.getEditorInputFile();
        snippetDialog.setProject(file.getProject());
        snippetDialog.open();
    }
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.