org.eclipse.ui.browser.IWebBrowser Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of workbench Show documentation
Show all versions of workbench Show documentation
This plug-in contains the bulk of the Workbench implementation, and depends on JFace, SWT, and Core Runtime. It cannot be used independently from org.eclipse.ui. Workbench client plug-ins should not depend directly on this plug-in.
The newest version!
/*******************************************************************************
* Copyright (c) 2005 IBM Corporation and others.
* 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
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.ui.browser;
import java.net.URL;
import org.eclipse.ui.PartInitException;
/**
* An opened Web browser instance (either internal or external).
*
* This interface is not intended to be implemented by clients.
*
*
* @since 3.1
* @see IWorkbenchBrowserSupport
*/
public interface IWebBrowser {
/**
* Returns the unique identifier of this browser. If an id has been supplied
* to the browser support when the instance was created, it will be used.
* Otherwise, a generated id will be provided to the browser that is
* guaranteed to be unique.
*
* @return a unique identifier of this browser instance
*/
String getId();
/**
* Opens a URL on this Web browser instance.
*
* @param url
* the URL to display
* @exception PartInitException
* if the browser fails to navigate to the provided url for
* any reason
*/
void openURL(URL url) throws PartInitException;
/**
* Closes this browser instance.
*
* @return true
if the browser was closed or
* false
if the operation failed or is not supported.
*/
boolean close();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy