1 package JSci.instruments; 2 3 /** An object that delivers frames (typically, a framegrabber) */ 4 5 public interface ImageSource extends Control,Dimensions { 6 7 /** set the object that must read the frames through receive() method. 8 * @param fs the object that reads the frames 9 */ 10 void setSink(ImageSink fs); 11 12 } 13