//Labelled Actions are used to group actions on the same bound Fact. Only
//ActionSetField and ActionUpdateField need to be grouped in this manner.
private LabelledAction findByLabelledAction( List<LabelledAction> actions,
String boundName ) {
for ( LabelledAction labelledAction : actions ) {
IAction action = labelledAction.action;
if ( action instanceof ActionFieldList ) {
if ( labelledAction.boundName.equals( boundName ) ) {
return labelledAction;
}
}