Moved the code in the "tests" plugin (plural) to the "test" fragment (singular)....
[phpeclipse.git] / net.sourceforge.phpeclipse.webbrowser / src / net / sourceforge / phpeclipse / webbrowser / IWebBrowser.java
1 package net.sourceforge.phpeclipse.webbrowser;
2
3 import java.net.URL;
4
5 /**
6  * 
7  */
8 public interface IWebBrowser {
9         public String getName();
10
11         public void openURL(URL url);
12 }