1 11 package org.eclipse.ui.browser; 12 13 import org.eclipse.ui.PartInitException; 14 15 50 51 public interface IWorkbenchBrowserSupport { 52 57 int LOCATION_BAR = 1 << 1; 58 59 64 int NAVIGATION_BAR = 1 << 2; 65 66 70 int STATUS = 1 << 3; 71 72 77 int PERSISTENT = 1 << 4; 78 79 84 int AS_EDITOR = 1 << 5; 85 86 91 int AS_VIEW = 1 << 6; 92 93 98 int AS_EXTERNAL = 1 << 7; 99 100 135 IWebBrowser createBrowser(int style, String browserId, String name, 136 String tooltip) throws PartInitException; 137 138 157 IWebBrowser createBrowser(String browserId) throws PartInitException; 158 159 172 IWebBrowser getExternalBrowser() throws PartInitException; 173 174 184 boolean isInternalWebBrowserAvailable(); 185 } | Popular Tags |