1 package ch.odi.justblog.gui.swing.control;
2
3 /***
4 *
5 *
6 * @author oglueck
7 */
8 public interface UrlBarController {
9
10 /***
11 * Called when the user entered a new URL into the address bar.
12 *
13 * @param url The new URL
14 */
15 void newUrl(String url);
16
17 }