home *** CD-ROM | disk | FTP | other *** search
/ Netscape Plug-Ins Developer's Kit / Netscape_Plug-Ins_Developers_Kit.iso / source / Chap15 / npavi / AVIOBSER.JAV < prev    next >
Encoding:
Text File  |  1996-04-17  |  308 b   |  11 lines

  1.  
  2. // java interface for events coming from the avi plugin 
  3. // any object implementing this interface may register itself into the 
  4. // AviPlayer to get notifications (see advise function in AviPlayer)
  5.  
  6. interface AviObserver {
  7.  
  8.     public void onStop();
  9.     public void onPositionChange(int newPosition);
  10.  
  11. }