Package uk.ac.qmul.eecs.depic.daw
Interface Parameter
-
- All Known Implementing Classes:
- PanParameter
public interface Parameter
A parameter of the audio computation
-
-
Nested Class Summary
Nested Classes Modifier and Type Interface and Description static interface
Parameter.Type
-
Field Summary
Fields Modifier and Type Field and Description static Parameter.Type
GAIN_TYPE
static Parameter
NONE_PARAMETER
static Parameter.Type
PAN_TYPE
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method and Description void
automate(Automation a)
float
getInitialValue()
Range<java.lang.Float>
getRange()
Parameter.Type
getType()
float
getValue()
void
setValue(float value)
-
-
-
Field Detail
-
GAIN_TYPE
static final Parameter.Type GAIN_TYPE
-
NONE_PARAMETER
static final Parameter NONE_PARAMETER
-
PAN_TYPE
static final Parameter.Type PAN_TYPE
-
-
Method Detail
-
getValue
float getValue()
-
setValue
void setValue(float value)
-
getInitialValue
float getInitialValue()
-
getRange
Range<java.lang.Float> getRange()
-
getType
Parameter.Type getType()
-
automate
void automate(Automation a)
-
-