entryActions = new ArrayList<IActionElement>();
entryActions.addAll(this.viewStateClone.getEntryActions().getEntryActions());
}
else {
entryActions = new ArrayList<IActionElement>();
EntryActions entry = new EntryActions();
entry.createNew(viewStateClone);
viewStateClone.setEntryActions(entry);
}
if (this.viewStateClone.getExitActions() != null) {
exitActions = new ArrayList<IActionElement>();
exitActions.addAll(this.viewStateClone.getExitActions().getExitActions());
}
else {
exitActions = new ArrayList<IActionElement>();
ExitActions exit = new ExitActions();
exit.createNew(viewStateClone);
viewStateClone.setExitActions(exit);
}
if (this.viewStateClone.getRenderActions() != null) {
renderActions = new ArrayList<IActionElement>();
renderActions.addAll(this.viewStateClone.getRenderActions().getRenderActions());
}
else {
renderActions = new ArrayList<IActionElement>();
RenderActions entry = new RenderActions();
entry.createNew(viewStateClone);
viewStateClone.setRenderActions(entry);
}
exceptionHandler = new ArrayList<org.springframework.ide.eclipse.webflow.core.model.IExceptionHandler>();
if (this.viewStateClone.getExceptionHandlers() != null) {