public ActionsForm openActions(String filename) {
ActionsForm actionsForm = new ActionsForm(this, folder, SWT.NONE);
if(actionsForm.open(filename, filelist)) {
CTabItem tab = newItem(actionsForm, actionsForm.getFilename());
tab.setImage(new Image(tab.getDisplay(), getClass().getResourceAsStream(
"/sos/scheduler/editor/editor-small.png")));
return actionsForm;
} else