Package org.apache.sling.ide.eclipse.ui.editors

Examples of org.apache.sling.ide.eclipse.ui.editors.WebBrowserEditorInput


          return;
        }
        IServer server = servers[0];
        final String url = node.getURLForBrowser(server)+".html";
    try {
      IEditorInput input = new WebBrowserEditorInput(url);
      page.openEditor(input, "org.apache.sling.ide.eclipse.ui.editors.WebBrowser", true);
    } catch (PartInitException e1) {
      //TODO proper logging
      e1.printStackTrace();
      MessageDialog.openWarning(shell, "Cannot open browser", "Opening caused an exception: "+e1.getMessage());
View Full Code Here

TOP

Related Classes of org.apache.sling.ide.eclipse.ui.editors.WebBrowserEditorInput

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.