
import java.awt.*;

/*
 * Video Camera listeners must implement this
 * interface so that they can be told when
 * the video camera has captured a new image.
 */
public interface VideoCameraListener {

  public void setImage(Image newImage);

}
