
org.eclipse.ui.browser.IWebBrowser Maven / Gradle / Ivy
The newest version!
/*******************************************************************************
* Copyright (c) 2005, 2008 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;
/**
* An opened Web browser instance (either internal or external).
*
* This interface is not intended to be implemented by clients.
*
*
* @since 3.1
* @see IWorkbenchBrowserSupport
* @noimplement This interface is not intended to be implemented by clients.
*/
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