1 7 8 package javax.sound.sampled; 9 10 11 48 public interface SourceDataLine extends DataLine { 49 50 51 91 public void open(AudioFormat format, int bufferSize) throws LineUnavailableException ; 92 93 94 130 public void open(AudioFormat format) throws LineUnavailableException ; 131 132 133 176 public int write(byte[] b, int off, int len); 177 178 185 } 187 | Popular Tags |