Searched refs:TargetDataLine (Results 1 - 6 of 6) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DTargetDataLine.java43 * The <code>TargetDataLine</code> interface provides a method for reading the
59 public interface TargetDataLine extends DataLine { interface in inherits:DataLine
H A DAudioInputStream.java152 public AudioInputStream(TargetDataLine line) {
455 * Private inner class that makes a TargetDataLine look like an InputStream.
460 * The TargetDataLine on which this TargetDataLineInputStream is based.
462 TargetDataLine line;
465 TargetDataLineInputStream(TargetDataLine line) {
475 //$$fb 2001-07-16: added this method to correctly close the underlying TargetDataLine.
H A DAudioSystem.java98 * <td><code>javax.sound.sampled.TargetDataLine</code></td>
99 * <td>{@link TargetDataLine}</td>
384 * <code>javax.sound.sampled.TargetDataLine</code> are defined
661 * <code>TargetDataLine</code> object.
670 * <p>The returned <code>TargetDataLine</code>'s default
674 * {@code javax.sound.sampled.TargetDataLine}
682 * @return the desired <code>TargetDataLine</code> object
696 public static TargetDataLine getTargetDataLine(AudioFormat format)
699 DataLine.Info info = new DataLine.Info(TargetDataLine.class, format);
700 return (TargetDataLine) AudioSyste
[all...]
/openjdk7/jdk/src/share/classes/com/sun/media/sound/
H A DJDK13Services.java41 import javax.sound.sampled.TargetDataLine;
134 Synthesizer.class, SourceDataLine.class, TargetDataLine.class,
160 Synthesizer.class, SourceDataLine.class, TargetDataLine.class,
182 Synthesizer.class, SourceDataLine.class, TargetDataLine.class,
189 && !TargetDataLine.class.equals(typeClass)
H A DDirectAudioDevice.java85 // TargetDataLine
103 isSource /* true:SourceDataLine/Clip, false:TargetDataLine */,
161 return new DirectDLI(isSource?SourceDataLine.class:TargetDataLine.class,
378 protected final boolean isSource; // true for SourceDataLine, false for TargetDataLine
936 * Private inner class representing a TargetDataLine
939 implements TargetDataLine {
/openjdk7/jdk/test/javax/sound/sampled/DataLine/
H A DDataLine_ArrayIndexOutOfBounds.java4 * @summary SourceDataLine.write and TargetDataLine.read don't throw ArrayIndexOutOfBoundsException
14 import javax.sound.sampled.TargetDataLine;
185 Line.Info linfo = new Line.Info(TargetDataLine.class);
186 TargetDataLine line = null;
188 line = (TargetDataLine)mixer.getLine(linfo);

Completed in 490 milliseconds