Search in sources :

Example 1 with ITabbedPropertySheetPageContributor

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;
}
Also used : IPropertySheetPage(org.eclipse.ui.views.properties.IPropertySheetPage) CSSPropertyPage(org.jboss.tools.jst.web.ui.internal.css.properties.CSSPropertyPage) ITabbedPropertySheetPageContributor(org.eclipse.ui.views.properties.tabbed.ITabbedPropertySheetPageContributor)

Aggregations

IPropertySheetPage (org.eclipse.ui.views.properties.IPropertySheetPage)1 ITabbedPropertySheetPageContributor (org.eclipse.ui.views.properties.tabbed.ITabbedPropertySheetPageContributor)1 CSSPropertyPage (org.jboss.tools.jst.web.ui.internal.css.properties.CSSPropertyPage)1