home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &… the Search for Life CD 3 / 0_CD-ROM.iso / install / jre1_3 / lib / rt.jar / sun / audio / AudioTranslatorStream.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  378 b   |  18 lines

  1. package sun.audio;
  2.  
  3. import java.io.IOException;
  4. import java.io.InputStream;
  5.  
  6. public class AudioTranslatorStream extends NativeAudioStream {
  7.    private int length = 0;
  8.  
  9.    public AudioTranslatorStream(InputStream var1) throws IOException {
  10.       super(var1);
  11.       throw new InvalidAudioFormatException();
  12.    }
  13.  
  14.    public int getLength() {
  15.       return this.length;
  16.    }
  17. }
  18.