home *** CD-ROM | disk | FTP | other *** search
- package sun.audio;
-
- import java.io.IOException;
- import java.io.InputStream;
-
- public class AudioTranslatorStream extends NativeAudioStream {
- private int length;
-
- public AudioTranslatorStream(InputStream var1) throws IOException {
- super(var1);
- throw new InvalidAudioFormatException();
- }
-
- public int getLength() {
- return this.length;
- }
- }
-