use of org.eclipse.ui.views.properties.tabbed.ITabbedPropertySheetPageContributor in project jbosstools-jst by jbosstools.
the class CSSEditorView method createCssPropertyPage.
private IPage createCssPropertyPage() {
IPropertySheetPage page = new CSSPropertyPage(new ITabbedPropertySheetPageContributor() {
public String getContributorId() {
return CONTRIBUTOR_ID;
}
}, this);
initPage((IPageBookViewPage) page);
page.createControl(getPageBook());
return page;
}
Aggregations