We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c10e725 commit 6736331Copy full SHA for 6736331
src/sun/audio/AudioPlayer.java
@@ -0,0 +1,9 @@
1
+package sun.audio;
2
+
3
+public class AudioPlayer extends java.lang.Thread
4
+{
5
+ public static final AudioPlayer player = new AudioPlayer();
6
7
+ public synchronized void stop(java.io.InputStream as) {}
8
+ public synchronized void start(java.io.InputStream as) {}
9
+}
src/sun/audio/AudioStream.java
@@ -0,0 +1,12 @@
+import java.io.*;
+public class AudioStream extends java.io.FilterInputStream
+ public AudioStream(InputStream is) throws IOException {
+ super(is);
+ }
10
11
12
0 commit comments