Updated the included PHP manual from 2004-08-28 to the current version 2006-06-25...
[phpeclipse.git] / net.sourceforge.phpeclipse.webbrowser / src / net / sourceforge / phpeclipse / webbrowser / IExternalWebBrowser.java
1 package net.sourceforge.phpeclipse.webbrowser;
2 /**
3  * 
4  */
5 public interface IExternalWebBrowser extends IWebBrowser {
6         public String getLocation();
7         
8         public String getParameters();
9         
10         public void delete();
11         
12         public boolean isWorkingCopy();
13         
14         public IExternalWebBrowserWorkingCopy getWorkingCopy();
15 }