home *** CD-ROM | disk | FTP | other *** search
/ S283 Planetary Science &n…he Search for Life DVD 2 / DVD-ROM.iso / install / jre1_3 / lib / rt.jar / javax / sound / midi / MidiFileFormat.class (.txt) < prev    next >
Encoding:
Java Class File  |  1979-12-31  |  664 b   |  39 lines

  1. package javax.sound.midi;
  2.  
  3. public class MidiFileFormat {
  4.    public static final int UNKNOWN_LENGTH = -1;
  5.    protected int type;
  6.    protected float divisionType;
  7.    protected int resolution;
  8.    protected int byteLength;
  9.    protected long microsecondLength;
  10.  
  11.    public MidiFileFormat(int var1, float var2, int var3, int var4, long var5) {
  12.       this.type = var1;
  13.       this.divisionType = var2;
  14.       this.resolution = var3;
  15.       this.byteLength = var4;
  16.       this.microsecondLength = var5;
  17.    }
  18.  
  19.    public int getType() {
  20.       return this.type;
  21.    }
  22.  
  23.    public float getDivisionType() {
  24.       return this.divisionType;
  25.    }
  26.  
  27.    public int getResolution() {
  28.       return this.resolution;
  29.    }
  30.  
  31.    public int getByteLength() {
  32.       return this.byteLength;
  33.    }
  34.  
  35.    public long getMicrosecondLength() {
  36.       return this.microsecondLength;
  37.    }
  38. }
  39.