home *** CD-ROM | disk | FTP | other *** search
- package javax.sound.midi;
-
- public class MidiFileFormat {
- public static final int UNKNOWN_LENGTH = -1;
- protected int type;
- protected float divisionType;
- protected int resolution;
- protected int byteLength;
- protected long microsecondLength;
-
- public MidiFileFormat(int var1, float var2, int var3, int var4, long var5) {
- this.type = var1;
- this.divisionType = var2;
- this.resolution = var3;
- this.byteLength = var4;
- this.microsecondLength = var5;
- }
-
- public int getType() {
- return this.type;
- }
-
- public float getDivisionType() {
- return this.divisionType;
- }
-
- public int getResolution() {
- return this.resolution;
- }
-
- public int getByteLength() {
- return this.byteLength;
- }
-
- public long getMicrosecondLength() {
- return this.microsecondLength;
- }
- }
-