1 7 8 package javax.sound.sampled; 9 10 42 public interface TargetDataLine extends DataLine { 43 44 45 85 public void open(AudioFormat format, int bufferSize) throws LineUnavailableException ; 86 87 88 123 public void open(AudioFormat format) throws LineUnavailableException ; 124 125 126 165 public int read(byte[] b, int off, int len); 166 167 174 } 176 | Popular Tags |