home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / sound / sampled / DataLine.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  502 b   |  28 lines

  1. package javax.sound.sampled;
  2.  
  3. public interface DataLine extends Line {
  4.    void drain();
  5.  
  6.    void flush();
  7.  
  8.    void start();
  9.  
  10.    void stop();
  11.  
  12.    boolean isRunning();
  13.  
  14.    boolean isActive();
  15.  
  16.    AudioFormat getFormat();
  17.  
  18.    int getBufferSize();
  19.  
  20.    int available();
  21.  
  22.    int getFramePosition();
  23.  
  24.    long getMicrosecondPosition();
  25.  
  26.    float getLevel();
  27. }
  28.