/******************************************************************************* * Copyright (c) 2010 Martin Schnabel <mb0@mb0.org>. * All rights reserved. This program and the accompanying materials * are made available under the terms of the Eclipse Public License v1.0 * which accompanies this distribution, and is available at * http://www.eclipse.org/legal/epl-v10.html ******************************************************************************/ package org.axdt.core.ui.swf; import java.net.URL; import org.eclipse.core.runtime.CoreException; import org.eclipse.ui.browser.IWebBrowser; import org.eclipse.ui.browser.IWorkbenchBrowserSupport; /** * @author mb0 */ public class InternalBrowserView extends BrowserSupportPlayer { public static final String ID = "org.axdt.core.ui.swf.internalView"; public InternalBrowserView.Instance launch(URL target) throws Exception { return new InternalBrowserView.Instance(target); } public boolean isAvailable() { return getSupport().isInternalWebBrowserAvailable(); } public static class Instance extends BrowserSupportPlayer.Instance { public Instance(URL target) throws CoreException { super(target); } @Override protected IWebBrowser createBrowser() throws CoreException { int style = IWorkbenchBrowserSupport.LOCATION_BAR | IWorkbenchBrowserSupport.NAVIGATION_BAR | IWorkbenchBrowserSupport.AS_VIEW; return getSupport().createBrowser(style, target.getPath() + "#view", null, null); } } }