redhawksdr - Setting Component Property from REDHAWK Control Panel -
i'm working on redhawk control panel. i've been able bind sca component property swt text widget , keep them in sync. however, cannot find method set sca component property redhawk control panel. example, trying set value of simple float property in sca component after swt button widget pressed (using selectionevent).
is should expect able do? if so, how? dug through gov.redhawk.core code, didn't have luck.
thanks!
in order update component property need locked reference sca simple property. done follows
scamodelcommand.excute(property, new scamodelcommand(){ @override execute() { property.setvalue(newvalue) } });
Comments
Post a Comment