/[classpath]/classpath/javax/sound/sampled/DataLine.java
ViewVC logotype

Diff of /classpath/javax/sound/sampled/DataLine.java

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1.1.2.1 by gnu_andrew, Sun Nov 27 21:00:37 2005 UTC revision 1.1.2.2 by tromey, Fri Dec 2 22:48:53 2005 UTC
# Line 64  public interface DataLine extends Line Line 64  public interface DataLine extends Line
64       * @param klass the class of the line       * @param klass the class of the line
65       * @param fmt the supported format       * @param fmt the supported format
66       */       */
67      public Info(Class klass, AudioFormat fmt)      public Info(Class<?> klass, AudioFormat fmt)
68      {      {
69        super(klass);        super(klass);
70        this.minBufferSize = AudioSystem.NOT_SPECIFIED;        this.minBufferSize = AudioSystem.NOT_SPECIFIED;
# Line 80  public interface DataLine extends Line Line 80  public interface DataLine extends Line
80       * @param minSize the minimum buffer size       * @param minSize the minimum buffer size
81       * @param maxSize the maximum buffer size       * @param maxSize the maximum buffer size
82       */       */
83      public Info(Class klass, AudioFormat[] fmts, int minSize, int maxSize)      public Info(Class<?> klass, AudioFormat[] fmts, int minSize, int maxSize)
84      {      {
85        super(klass);        super(klass);
86        this.minBufferSize = minSize;        this.minBufferSize = minSize;
# Line 96  public interface DataLine extends Line Line 96  public interface DataLine extends Line
96       * @param fmt the supported format       * @param fmt the supported format
97       * @param size the buffer size       * @param size the buffer size
98       */       */
99      public Info(Class klass, AudioFormat fmt, int size)      public Info(Class<?> klass, AudioFormat fmt, int size)
100      {      {
101        super(klass);        super(klass);
102        this.minBufferSize = size;        this.minBufferSize = size;

Legend:
Removed from v.1.1.2.1  
changed lines
  Added in v.1.1.2.2

savannah-hackers-public@gnu.org
ViewVC Help
Powered by ViewVC 1.1.26