1199c597a8d6c0af56bdc205fb3eb647e499a133
[phpeclipse.git] / net.sourceforge.phpeclipse.webbrowser / src / org / eclipse / webbrowser / ExtendedBrowser.java
1 /**
2  * Copyright (c) 2004 IBM Corporation and others.
3  * All rights reserved.   This program and the accompanying materials
4  * are made available under the terms of the Common Public License v1.0
5  * which accompanies this distribution, and is available at
6  * http://www.eclipse.org/legal/cpl-v10.html
7  *
8  * Contributors:
9  *    IBM - Initial API and implementation
10  */
11 package org.eclipse.webbrowser;
12
13 import org.eclipse.swt.browser.Browser;
14 import org.eclipse.swt.widgets.Composite;
15 import org.eclipse.webbrowser.internal.WebBrowser;
16 /**
17  * Web browser widget. Extends the eclipse Browser widget by adding an
18  * optional toolbar and statusbar.
19  */
20 public class ExtendedBrowser extends WebBrowser {
21         public ExtendedBrowser(Composite parent, final boolean showToolbar, final boolean showStatusbar) {
22                 super(parent, showToolbar, showStatusbar);
23         }
24
25         /**
26          * Return the underlying browser control.
27          * 
28          * @return org.eclipse.swt.browser.Browser
29          */
30         public Browser getBrowser() {
31                 return browser;
32         }
33
34         public void home() {
35                 super.home();
36         }
37
38         public void setURL(String url) {
39                 super.setURL(url);
40         }
41 }