current.parameterDefinitions.put(parameterName, parameterClass);
return this;
}
public SetBuilder property(String key, Object value) {
if (current==null) {
throw new PvmException("no current signal definition");
}
if (current.properties==null) {
current.properties = new HashMap<String, Object>();
}
current.properties.put(key, value);