1 11 package org.eclipse.help.browser; 12 18 public interface IBrowser { 19 22 public void close(); 23 28 public boolean isCloseSupported(); 29 36 public void displayURL(String url) throws Exception ; 37 42 public boolean isSetLocationSupported(); 43 48 public boolean isSetSizeSupported(); 49 59 public void setLocation(int x, int y); 60 70 public void setSize(int width, int height); 71 } 72 73 | Popular Tags |