home *** CD-ROM | disk | FTP | other *** search
/ Popular Software (Premium Edition) / mycd.iso / INTERNET / PIE5.0 / AXA2.CAB / DAJAVA.CAB / com / ms / dxmedia / Viewer.class (.txt) < prev    next >
Encoding:
Java Class File  |  1997-10-14  |  549 b   |  20 lines

  1. package com.ms.dxmedia;
  2.  
  3. public interface Viewer {
  4.    double getCurrentTickTime();
  5.  
  6.    ErrorAndWarningReceiver registerErrorAndWarningReceiver(ErrorAndWarningReceiver var1);
  7.  
  8.    void tick(double var1) throws DXMException;
  9.  
  10.    void tick() throws DXMException;
  11.  
  12.    Preferences getPreferences() throws DXMException;
  13.  
  14.    void startModel() throws DXMException;
  15.  
  16.    void stopModel() throws DXMException;
  17.  
  18.    double getCurrentTime();
  19. }
  20.