public interface IParameterList
Modifier and Type | Method and Description |
---|---|
Parameter[] |
getParameters() |
float[] |
getParameterValues() |
java.lang.String |
getParamsString() |
float |
getValue(int index) |
void |
readFromFile(java.lang.String filepath)
Reads the parameters from the specified file
|
void |
setValue(int index,
float value) |
void |
writeToFile(java.lang.String filename)
Writes the parameters to the specified file
|
float[] getParameterValues()
float getValue(int index)
index
- the 0 based index of the parameter.void setValue(int index, float value)
index
- the 0 based index of the parametervalue
- the new value of the parametervoid writeToFile(java.lang.String filename)
filename
- the name to use as filenamevoid readFromFile(java.lang.String filepath)
filepath
- the file to readjava.lang.String getParamsString()
Parameter[] getParameters()