Methods Summary |
---|
public java.lang.String | get(java.lang.String param)Returns the parameter's value. If the parameter was not set or
doesn't have a default value, returns null.
return (String)parameters.get(param);
|
public java.awt.Component | getControlComponent()Get the Component associated with this
Control object.
For example, this method might return
a slider for volume control or a panel containing radio buttons for
CODEC control.
The getControlComponent method can return
null if there is no GUI control for
this Control .
// not implemented yet
return null;
|
public void | set(java.lang.String param, java.lang.String value)
parameters.remove(param); // first remove any value that already exist
parameters.put(param, value);
|