Searched defs:lineClass (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/sound/sampled/
H A DLine.java245 private final Class lineClass; field in class:Line.Info
252 * @param lineClass the class of the line that the new Line.Info object describes
254 public Info(Class<?> lineClass) { argument
256 if (lineClass == null) {
257 this.lineClass = Line.class;
259 this.lineClass = lineClass;
270 return lineClass;
H A DPort.java124 * @param lineClass the class of the port described by the info object.
130 public Info(Class<?> lineClass, String name, boolean isSource) { argument
132 super(lineClass);
H A DDataLine.java295 * @param lineClass the class of the data line described by the info object
300 public Info(Class<?> lineClass, AudioFormat[] formats, int minBufferSize, int maxBufferSize) { argument
302 super(lineClass);
321 * @param lineClass the class of the data line described by the info object
325 public Info(Class<?> lineClass, AudioFormat format, int bufferSize) { argument
327 super(lineClass);
347 * @param lineClass the class of the data line described by the info object
350 public Info(Class<?> lineClass, AudioFormat format) { argument
351 this(lineClass, format, AudioSystem.NOT_SPECIFIED);

Completed in 31 milliseconds