Lines Matching defs:file

8  * particular file as subject to the "Classpath" exception as provided
9 * by Oracle in the LICENSE file that accompanied this code.
14 * version 2 for more details (a copy is included in the LICENSE file that
38 * A <code>MidiFileReader</code> supplies MIDI file-reading services. Classes implementing this
40 * MIDI file, and can produce a <code>Sequence</code> object from files of these types.
48 * Obtains the MIDI file format of the input stream provided. The stream must
49 * point to valid MIDI file data. In general, MIDI file readers may
56 * @param stream the input stream from which file format information should be
58 * @return a <code>MidiFileFormat</code> object describing the MIDI file format
60 * file data recognized by the system
69 * Obtains the MIDI file format of the URL provided. The URL must
70 * point to valid MIDI file data.
71 * @param url the URL from which file format information should be
73 * @return a <code>MidiFileFormat</code> object describing the MIDI file format
75 * file data recognized by the system
82 * Obtains the MIDI file format of the <code>File</code> provided.
83 * The <code>File</code> must point to valid MIDI file data.
84 * @param file the <code>File</code> from which file format information should be
86 * @return a <code>MidiFileFormat</code> object describing the MIDI file format
88 * file data recognized by the system
91 public abstract MidiFileFormat getMidiFileFormat(File file) throws InvalidMidiDataException, IOException;
96 * point to valid MIDI file data. In general, MIDI file readers may
105 * @return a <code>Sequence</code> object based on the MIDI file data contained
108 * file data recognized by the system
118 * point to valid MIDI file data.
121 * @return a <code>Sequence</code> object based on the MIDI file data pointed
124 * file data recognized by the system
132 * point to valid MIDI file data.
133 * @param file the <code>File</code> from which the <code>Sequence</code> should be
135 * @return a <code>Sequence</code> object based on the MIDI file data pointed
138 * file data recognized by the system
141 public abstract Sequence getSequence(File file) throws InvalidMidiDataException, IOException;