String actionStr = null;
int row = actionTable.getSelectedRow();
if ((row >= 0) && (row < actionList.size())) {
Action action = actionList.get(row);
StringBuffer b = new StringBuffer();
action.saveToBuffer(b, "\n");
actionStr = b.toString();
envelopeController.setCurrAction(action);
}
else {
envelopeController.setCurrAction(null);