/[classpath]/classpath/javax/sound/midi/MidiFileFormat.java
ViewVC logotype

Diff of /classpath/javax/sound/midi/MidiFileFormat.java

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

revision 1.2 by green, Mon Sep 26 17:24:00 2005 UTC revision 1.3 by green, Tue Sep 27 15:28:05 2005 UTC
# Line 74  public class MidiFileFormat Line 74  public class MidiFileFormat
74    /**    /**
75     * The size of the MIDI file in bytes.     * The size of the MIDI file in bytes.
76     */     */
77    protected int bytes = UNKNOWN_LENGTH;    protected int byteLength = UNKNOWN_LENGTH;
78        
79    /**    /**
80     * The length of the MIDI file in microseconds.     * The length of the MIDI file in microseconds.
81     */     */
82    protected long microseconds = UNKNOWN_LENGTH;    protected long microsecondLength = UNKNOWN_LENGTH;
83        
84    /**    /**
85     * A special value indicating an unknown quantity.     * A special value indicating an unknown quantity.
# Line 101  public class MidiFileFormat Line 101  public class MidiFileFormat
101      this.type = type;      this.type = type;
102      this.divisionType = divisionType;      this.divisionType = divisionType;
103      this.resolution = resolution;      this.resolution = resolution;
104      this.bytes = bytes;      this.byteLength = bytes;
105      this.microseconds = microseconds;      this.microsecondLength = microseconds;
106    }    }
107        
108    /**    /**
# Line 143  public class MidiFileFormat Line 143  public class MidiFileFormat
143     */     */
144    public int getByteLength()    public int getByteLength()
145    {    {
146      return bytes;      return byteLength;
147    }    }
148    
149    /**    /**
# Line 153  public class MidiFileFormat Line 153  public class MidiFileFormat
153     */     */
154    public long getMicrosecondLength()    public long getMicrosecondLength()
155    {    {
156      return microseconds;      return microsecondLength;
157    }    }
158  }  }

Legend:
Removed from v.1.2  
changed lines
  Added in v.1.3

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