}
public void syncActionAction() throws Exception {
int row = actionTable.getSelectedRow();
if ((row >= 0) && (row < actionList.size())) {
Action action = actionList.get(row);
switch (action.getActionType()) {
case EXECUTE_CREATOR:
selectCreator(action.getParameter());
action.setProperties(scriptProcessor.getCreator(),
scriptProcessor.getBufferList());
break;
case EXECUTE_TRANSFORMER:
selectTransformer(action.getParameter());
action.setProperties(scriptProcessor.getTransformer(),
scriptProcessor.getBufferList());
break;
case EXECUTE_LOADER:
selectLoader(action.getParameter());
action.setProperties(scriptProcessor.getLoader(),
scriptProcessor.getBufferList());
break;
}
}
}