use of org.eclipse.jdt.internal.ui.typehierarchy.HierarchyInformationControl in project xtext-eclipse by eclipse.
the class HierarchyInformationPresenter method getHierarchyPresenterControlCreator.
protected static IInformationControlCreator getHierarchyPresenterControlCreator() {
return new IInformationControlCreator() {
@Override
public IInformationControl createInformationControl(Shell parent) {
int shellStyle = SWT.RESIZE;
int treeStyle = SWT.V_SCROLL | SWT.H_SCROLL;
HierarchyInformationControl hierarchyInformationControl = new HierarchyInformationControl(parent, shellStyle, treeStyle);
return hierarchyInformationControl;
}
};
}
Aggregations