package video; /* * Created on Oct 1, 2004 * * To change the template for this generated file go to * Window>Preferences>Java>Code Generation>Code and Comments */ /** * @author Dan O'Sullivan * *Decribes how a PixelSource talks back to a object that want to be notified about new frames. * * */ public interface VideoListener { /**For alerts that a new frame is ready to come * */ public void newFrame(); }