import javax.swing.JScrollBar;

public interface ImageWindow
{
  public JScrollBar getHorizontalScrollBar();
  public JScrollBar getVerticalScrollBar();
  public void notifyImageInfo(String info);
  public void notifyTotalBytes(int bytes);
}