use of edu.cmu.cs.hcii.cogtool.view.SWTListGroupScript in project cogtool by cogtool.
the class ScriptViewerUI method updateView.
/**
* Update the view: Set the View's List with the current ScriptSteps
*/
@Override
protected void updateView() {
GroupScriptIterator groupSteps = uiModel.getScriptUIModel().getGroupSteps();
SWTListGroupScript swtList = view.getScriptEditorList();
swtList.setGroupListContents(groupSteps);
swtList.addListItem(swtList.getDestinationFrame());
}
Aggregations