public abstract class SoundbankReader extends Object
SoundbankReader
supplies soundbank file-reading services. Concrete
subclasses of SoundbankReader
parse a given soundbank file, producing
a Soundbank
object that can be loaded into a
Synthesizer
.Constructor and Description |
---|
SoundbankReader() |
Modifier and Type | Method and Description |
---|---|
abstract Soundbank |
getSoundbank(File file)
Obtains a soundbank object from the
File provided. |
abstract Soundbank |
getSoundbank(InputStream stream)
Obtains a soundbank object from the
InputStream provided. |
abstract Soundbank |
getSoundbank(URL url)
Obtains a soundbank object from the URL provided.
|
public abstract Soundbank getSoundbank(URL url) throws InvalidMidiDataException, IOException
InvalidMidiDataException
- if the URL does not point to valid MIDI
soundbank data recognized by this soundbank readerIOException
- if an I/O error occursurl
- URL representing the soundbank.public abstract Soundbank getSoundbank(InputStream stream) throws InvalidMidiDataException, IOException
InputStream
provided.InvalidMidiDataException
- if the stream does not point to valid
MIDI soundbank data recognized by this soundbank readerIOException
- if an I/O error occursstream
- InputStream
representing the soundbankpublic abstract Soundbank getSoundbank(File file) throws InvalidMidiDataException, IOException
File
provided.InvalidMidiDataException
- if the file does not point to valid MIDI
soundbank data recognized by this soundbank readerIOException
- if an I/O error occursfile
- the File
representing the soundbankaicas GmbH, Karlsruhe, Germany —www.aicas.com
Copyright © 2001-2019 aicas GmbH. All Rights Reserved.