/* For Copyright and License see LICENSE.txt and COPYING.txt in the root directory */ package com.nerdscentral.audio.core; import com.nerdscentral.audio.Messages; import com.nerdscentral.sython.Caster; import com.nerdscentral.sython.SFPL_Operator; import com.nerdscentral.sython.SFPL_RuntimeException; public class SF_Realise implements SFPL_Operator, SFPL_RefPassThrough { public SF_Realise() { } /** * */ private static final long serialVersionUID = 1L; @Override public String Word() { return Messages.getString("SF_Realise.0"); //$NON-NLS-1$ } @Override public Object Interpret(Object input) throws SFPL_RuntimeException { SFSignal in = Caster.makeSFSignal(input); return SFData.realise(in); } }