jlscp
v0.8

Uses of Interface
org.linuxsampler.lscp.Parameter

Packages that use Parameter
org.linuxsampler.lscp Provides classes for retrieving information and configuring LinuxSampler instance. 
 

Uses of Parameter in org.linuxsampler.lscp
 

Classes in org.linuxsampler.lscp that implement Parameter
 class AbstractParameter<T>
          This class provides default implementation of the Parameter interface.
 class BoolListParameter
          This class implements the Parameter<Boolean[]> interface.
 class BoolParameter
          This class implements the Parameter<Boolean> interface.
 class FloatListParameter
          This class implements the Parameter<Float[]> interface.
 class FloatParameter
          This class implements the Parameter<Float> interface.
 class IntListParameter
          This class implements the Parameter<Integer[]> interface.
 class IntParameter
          This class implements the Parameter<Integer> interface.
 class StringListParameter
          This class implements the Parameter<String[]> interface.
 class StringParameter
          This class implements the Parameter<String> interface.
 

Methods in org.linuxsampler.lscp that return Parameter
static Parameter<java.lang.Boolean> ParameterFactory.createParameter(java.lang.String name, java.lang.Boolean value)
          Creates a Parameter<Boolean> instance with the specified name and value.
static Parameter<java.lang.Boolean[]> ParameterFactory.createParameter(java.lang.String name, java.lang.Boolean[] value)
          Creates a Parameter<Boolean[]> instance with the specified name and value.
static Parameter<java.lang.Float> ParameterFactory.createParameter(java.lang.String name, java.lang.Float value)
          Creates a Parameter<Float> instance with the specified name and value.
static Parameter<java.lang.Float[]> ParameterFactory.createParameter(java.lang.String name, java.lang.Float[] value)
          Creates a Parameter<Float[]> instance with the specified name and value.
static Parameter<java.lang.Integer> ParameterFactory.createParameter(java.lang.String name, java.lang.Integer value)
          Creates a Parameter<Integer> instance with the specified name and value.
static Parameter<java.lang.Integer[]> ParameterFactory.createParameter(java.lang.String name, java.lang.Integer[] value)
          Creates a Parameter<Integer[]> instance with the specified name and value.
static Parameter<java.lang.String> ParameterFactory.createParameter(java.lang.String name, java.lang.String value)
          Creates a Parameter<String> instance with the specified name and value.
static Parameter<java.lang.String[]> ParameterFactory.createParameter(java.lang.String name, java.lang.String[] value)
          Creates a Parameter<String[]> instance with the specified name and value.
 Parameter<java.lang.Boolean> Device.getActiveParameter()
          Gets the ACTIVE parameter.
 Parameter<java.lang.Boolean> AbstractDevice.getActiveParameter()
          Gets the ACTIVE parameter.
 Parameter[] Device.getAdditionalParameters()
          Gets Parameter array with the additional parameters of this device.
 Parameter[] MidiPort.getAdditionalParameters()
          Gets Parameter array with the additional parameters of this MIDI port.
 Parameter[] AbstractDevice.getAdditionalParameters()
          Gets Parameter array with the additional parameters of this device.
 Parameter[] AudioOutputChannel.getAdditionalParameters()
          Gets a Parameter array with the additional parameters of this audio output channel.
 Parameter[] MidiPort.getAllParameters()
          Gets a Parameter array providing all parameters of this MIDI port (including NAME parameter).
 Parameter[] AudioOutputDevice.getAllParameters()
          Gets a Parameter array providing all parameters of this audio output device (including ACTIVE, CHANNELS and SAMPLERATE parameters).
 Parameter[] AudioOutputChannel.getAllParameters()
          Gets a Parameter array providing all parameters of this audio output channel (including NAME, IS_MIX_CHANNEL, MIX_CHANNEL_DESTINATION parameters).
 Parameter Client.getAudioOutputChannelParameterInfo(int devId, int chan, java.lang.String param)
          Gets detailed information about a specific audio output channel parameter.
 Parameter Client.getAudioOutputDriverParameterInfo(java.lang.String driver, java.lang.String param, Parameter... deplist)
          Gets detailed information about a specific audio output driver parameter.
 Parameter<java.lang.Integer> AudioOutputDevice.getChannelsParameter()
          Gets the CHANNELS parameter.
 Parameter Client.getMidiInputDriverParameterInfo(java.lang.String driver, java.lang.String param, Parameter... deplist)
          Gets detailed information about a specific MIDI input driver parameter.
 Parameter Client.getMidiInputPortParameterInfo(int deviceId, int port, java.lang.String param)
          Gets detailed information about a specific MIDI input port parameter.
 Parameter<java.lang.Integer> AudioOutputChannel.getMixChannelDestParameter()
          Gets the MIX_CHANNEL_DESTINATION parameter.
 Parameter<java.lang.Boolean> AudioOutputChannel.getMixChannelParameter()
          Gets the IS_MIX_CHANNEL parameter.
 Parameter<java.lang.String> MidiPort.getNameParameter()
          Gets the NAME parameter.
 Parameter<java.lang.String> AudioOutputChannel.getNameParameter()
          Gets the NAME parameter.
 Parameter[] AbstractDriver.getParameters()
          Gets all parameters available for this driver.
 Parameter[] Driver.getParameters()
          Gets all parameters available for this driver.
 Parameter<java.lang.Integer> MidiInputDevice.getPortsParameter()
          Gets the PORTS parameter.
 Parameter<java.lang.Integer> AudioOutputDevice.getSampleRateParameter()
          Gets the SAMPLERATE parameter.
 

Methods in org.linuxsampler.lscp with parameters of type Parameter
 void AbstractDriver.addParameter(Parameter prm)
          Adds driver parameter.
 void MidiPort.addParameter(Parameter prm)
          Adds additional parameter to this MIDI port.
 void AbstractDevice.addParameter(Parameter prm)
          Adds additional parameter to this device.
 void AudioOutputChannel.addParameter(Parameter prm)
          Adds additional parameter to this audio output channel.
 int Client.createAudioOutputDevice(java.lang.String aoDriver, Parameter... paramList)
          Creates a new audio output device for the desired audio output system.
 int Client.createMidiInputDevice(java.lang.String miDriver, Parameter... paramList)
          Creates a new MIDI input device.
 AudioOutputDriver Client.getAudioOutputDriverInfo(java.lang.String driverName, Parameter... depList)
          Gets detailed information about a specific audio output driver.
 Parameter Client.getAudioOutputDriverParameterInfo(java.lang.String driver, java.lang.String param, Parameter... deplist)
          Gets detailed information about a specific audio output driver parameter.
 MidiInputDriver Client.getMidiInputDriverInfo(java.lang.String driverName, Parameter... depList)
          Gets detailed information about a specific MIDI input driver.
 Parameter Client.getMidiInputDriverParameterInfo(java.lang.String driver, java.lang.String param, Parameter... deplist)
          Gets detailed information about a specific MIDI input driver parameter.
 void Client.setAudioOutputChannelParameter(int devId, int chn, Parameter prm)
          Alters a specific setting of an audio output channel.
 void Client.setAudioOutputDeviceParameter(int deviceId, Parameter prm)
          Alters a specific setting of a created audio output device.
 void AudioOutputDevice.setChannelsParameter(Parameter<java.lang.Integer> channels)
          Sets the CHANNELS parameter.
 void Client.setMidiInputDeviceParameter(int deviceId, Parameter prm)
          Alters a specific setting of a created MIDI input device.
 void Client.setMidiInputPortParameter(int deviceId, int port, Parameter prm)
          Alters a specific setting of a MIDI input port.
 void AudioOutputChannel.setMixChannelDestParameter(Parameter<java.lang.Integer> mcDst)
          Sets the MIX_CHANNEL_DESTINATION parameter.
 void AudioOutputChannel.setMixChannelParameter(Parameter<java.lang.Boolean> mixChannel)
          Sets whether this channel is a mix-channel.
 void MidiPort.setNameParameter(Parameter<java.lang.String> name)
          Sets the NAME parameter.
 void AudioOutputChannel.setNameParameter(Parameter<java.lang.String> name)
          Sets the NAME parameter.
 void MidiInputDevice.setPortsParameter(Parameter<java.lang.Integer> ports)
          Sets the PORTS parameter.
 void AudioOutputDevice.setSampleRateParameter(Parameter<java.lang.Integer> samplerate)
          Sets the SAMPLERATE parameter.
 


jlscp
v0.8

Copyright © 2009 Grigor Iliev. All rights reserved.