Way to access parameters in Transform classes

Hi,

what is the proper way to get access to graph parameters in my java transformation classes ?
As my transformation classes extends org.jetel.component.DataRecordTransform, I have tried

this.parameters.get("constant-name");

… but it can’t seem to find my values in this “parameters” Properties field…

Any hint ?

Thanks in advance,

Franck[/code]

No one on this ?

Hi,
getGraph().getGraphProperties().getProperty(parameterName)

Thanks a lot, Agata.