use of org.whole.lang.ui.input.IModelInputListener in project whole by wholeplatform.
the class E4GraphicalViewer method initialize.
@PostConstruct
protected void initialize() {
if (domain == null)
domain = new EntityEditDomain();
partFocusListeners = new ArrayList<IPartFocusListener>();
modelInputListeners = new ArrayList<IModelInputListener>();
referencedResources = new HashSet<String>();
createControl2(parent);
domain.addViewer(this);
setEditPartFactory(new WholeEditPartFactory());
setRootEditPart(createRootEditPart());
configureViewer(domain);
}
Aggregations