本文整理匯總了Java中org.eclipse.ui.views.properties.IPropertySheetPage類的典型用法代碼示例。如果您正苦於以下問題:Java IPropertySheetPage類的具體用法?Java IPropertySheetPage怎麽用?Java IPropertySheetPage使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
IPropertySheetPage類屬於org.eclipse.ui.views.properties包,在下文中一共展示了IPropertySheetPage類的15個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: getAdapter
import org.eclipse.ui.views.properties.IPropertySheetPage; //導入依賴的package包/類
/**
* This is how the framework determines which interfaces we implement.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings("rawtypes")
@Override
public Object getAdapter(Class key) {
if (key.equals(IContentOutlinePage.class)) {
return showOutlineView() ? getContentOutlinePage() : null;
}
else if (key.equals(IPropertySheetPage.class)) {
return getPropertySheetPage();
}
else if (key.equals(IGotoMarker.class)) {
return this;
}
else {
return super.getAdapter(key);
}
}
示例2: getPropertySheetPage
import org.eclipse.ui.views.properties.IPropertySheetPage; //導入依賴的package包/類
/**
* This accesses a cached version of the property sheet.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public IPropertySheetPage getPropertySheetPage() {
PropertySheetPage propertySheetPage =
new ExtendedPropertySheetPage(editingDomain) {
@Override
public void setSelectionToViewer(List<?> selection) {
SmarthomeEditor.this.setSelectionToViewer(selection);
SmarthomeEditor.this.setFocus();
}
@Override
public void setActionBars(IActionBars actionBars) {
super.setActionBars(actionBars);
getActionBarContributor().shareGlobalActions(this, actionBars);
}
};
propertySheetPage.setPropertySourceProvider(new AdapterFactoryContentProvider(adapterFactory));
propertySheetPages.add(propertySheetPage);
return propertySheetPage;
}
示例3: getAdapter
import org.eclipse.ui.views.properties.IPropertySheetPage; //導入依賴的package包/類
/**
* This is how the framework determines which interfaces we implement.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings({ "rawtypes", "unchecked" })
@Override
public Object getAdapter(Class key) {
if (key.equals(IContentOutlinePage.class)) {
return showOutlineView() ? getContentOutlinePage() : null;
}
else if (key.equals(IPropertySheetPage.class)) {
return getPropertySheetPage();
}
else if (key.equals(IGotoMarker.class)) {
return this;
}
else {
return super.getAdapter(key);
}
}
示例4: getPropertySheetPage
import org.eclipse.ui.views.properties.IPropertySheetPage; //導入依賴的package包/類
/**
* This accesses a cached version of the property sheet.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public IPropertySheetPage getPropertySheetPage() {
PropertySheetPage propertySheetPage =
new ExtendedPropertySheetPage(editingDomain) {
@Override
public void setSelectionToViewer(List<?> selection) {
MetamodelEditor.this.setSelectionToViewer(selection);
MetamodelEditor.this.setFocus();
}
@Override
public void setActionBars(IActionBars actionBars) {
super.setActionBars(actionBars);
getActionBarContributor().shareGlobalActions(this, actionBars);
}
};
propertySheetPage.setPropertySourceProvider(new AdapterFactoryContentProvider(adapterFactory));
propertySheetPages.add(propertySheetPage);
return propertySheetPage;
}
示例5: getAdapter
import org.eclipse.ui.views.properties.IPropertySheetPage; //導入依賴的package包/類
/**
* This is how the framework determines which interfaces we implement.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings("rawtypes")
@Override
public Object getAdapter(Class key) {
if (key.equals(IContentOutlinePage.class)) {
return showOutlineView() ? getContentOutlinePage() : null;
}
else if (key.equals(IPropertySheetPage.class)) {
return getPropertySheetPage();
}
else if (key.equals(IGotoMarker.class)) {
return this;
}
else {
return super.getAdapter(key);
}
}
示例6: getPropertySheetPage
import org.eclipse.ui.views.properties.IPropertySheetPage; //導入依賴的package包/類
/**
* This accesses a cached version of the property sheet.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public IPropertySheetPage getPropertySheetPage() {
PropertySheetPage propertySheetPage =
new ExtendedPropertySheetPage(editingDomain) {
@Override
public void setSelectionToViewer(List<?> selection) {
TracingannotationsEditor.this.setSelectionToViewer(selection);
TracingannotationsEditor.this.setFocus();
}
@Override
public void setActionBars(IActionBars actionBars) {
super.setActionBars(actionBars);
getActionBarContributor().shareGlobalActions(this, actionBars);
}
};
propertySheetPage.setPropertySourceProvider(new AdapterFactoryContentProvider(adapterFactory));
propertySheetPages.add(propertySheetPage);
return propertySheetPage;
}
示例7: getAdapter
import org.eclipse.ui.views.properties.IPropertySheetPage; //導入依賴的package包/類
/**
* This is how the framework determines which interfaces we implement.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
@SuppressWarnings ( "rawtypes" )
@Override
public Object getAdapter ( Class key )
{
if ( key.equals ( IContentOutlinePage.class ) )
{
return showOutlineView () ? getContentOutlinePage () : null;
}
else if ( key.equals ( IPropertySheetPage.class ) )
{
return getPropertySheetPage ();
}
else if ( key.equals ( IGotoMarker.class ) )
{
return this;
}
else
{
return super.getAdapter ( key );
}
}
示例8: getPropertySheetPage
import org.eclipse.ui.views.properties.IPropertySheetPage; //導入依賴的package包/類
/**
* This accesses a cached version of the property sheet.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public IPropertySheetPage getPropertySheetPage ()
{
PropertySheetPage propertySheetPage =
new ExtendedPropertySheetPage ( editingDomain )
{
@Override
public void setSelectionToViewer ( List<?> selection )
{
ProtocolEditor.this.setSelectionToViewer ( selection );
ProtocolEditor.this.setFocus ();
}
@Override
public void setActionBars ( IActionBars actionBars )
{
super.setActionBars ( actionBars );
getActionBarContributor ().shareGlobalActions ( this, actionBars );
}
};
propertySheetPage.setPropertySourceProvider ( new AdapterFactoryContentProvider ( adapterFactory ) );
propertySheetPages.add ( propertySheetPage );
return propertySheetPage;
}
示例9: getAdapter
import org.eclipse.ui.views.properties.IPropertySheetPage; //導入依賴的package包/類
/**
* This is how the framework determines which interfaces we implement.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
@SuppressWarnings ( "rawtypes" )
@Override
public Object getAdapter ( final Class key )
{
if ( key.equals ( IContentOutlinePage.class ) )
{
return showOutlineView () ? getContentOutlinePage () : null;
}
else if ( key.equals ( IPropertySheetPage.class ) )
{
return getPropertySheetPage ();
}
else if ( key.equals ( IGotoMarker.class ) )
{
return this;
}
else
{
return super.getAdapter ( key );
}
}
示例10: getPropertySheetPage
import org.eclipse.ui.views.properties.IPropertySheetPage; //導入依賴的package包/類
/**
* This accesses a cached version of the property sheet.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
*
* @generated
*/
public IPropertySheetPage getPropertySheetPage ()
{
final PropertySheetPage propertySheetPage = new ExtendedPropertySheetPage (
this.editingDomain ) {
@Override
public void setSelectionToViewer ( final List<?> selection )
{
ChartEditor.this.setSelectionToViewer ( selection );
ChartEditor.this.setFocus ();
}
@Override
public void setActionBars ( final IActionBars actionBars )
{
super.setActionBars ( actionBars );
getActionBarContributor ().shareGlobalActions ( this, actionBars );
}
};
propertySheetPage
.setPropertySourceProvider ( new AdapterFactoryContentProvider (
this.adapterFactory ) );
this.propertySheetPages.add ( propertySheetPage );
return propertySheetPage;
}
示例11: getPropertySheetPage
import org.eclipse.ui.views.properties.IPropertySheetPage; //導入依賴的package包/類
/**
* This accesses a cached version of the property sheet. <!-- begin-user-doc
* --> <!-- end-user-doc -->
*
* @generated
*/
public IPropertySheetPage getPropertySheetPage ()
{
if ( this.propertySheetPage == null )
{
this.propertySheetPage = new ExtendedPropertySheetPage ( this.editingDomain ) {
@Override
public void setSelectionToViewer ( final List<?> selection )
{
ChartConfiguratorView.this.setSelectionToViewer ( selection );
ChartConfiguratorView.this.setFocus ();
}
@Override
public void setActionBars ( final IActionBars actionBars )
{
super.setActionBars ( actionBars );
// getActionBarContributor ().shareGlobalActions ( this, actionBars );
}
};
this.propertySheetPage.setPropertySourceProvider ( new AdapterFactoryContentProvider ( this.factory ) );
}
return this.propertySheetPage;
}
示例12: getPropertySheetPage
import org.eclipse.ui.views.properties.IPropertySheetPage; //導入依賴的package包/類
/**
* This accesses a cached version of the property sheet.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public IPropertySheetPage getPropertySheetPage ()
{
PropertySheetPage propertySheetPage =
new ExtendedPropertySheetPage ( editingDomain )
{
@Override
public void setSelectionToViewer ( List<?> selection )
{
DetailViewEditor.this.setSelectionToViewer ( selection );
DetailViewEditor.this.setFocus ();
}
@Override
public void setActionBars ( IActionBars actionBars )
{
super.setActionBars ( actionBars );
getActionBarContributor ().shareGlobalActions ( this, actionBars );
}
};
propertySheetPage.setPropertySourceProvider ( new AdapterFactoryContentProvider ( adapterFactory ) );
propertySheetPages.add ( propertySheetPage );
return propertySheetPage;
}
示例13: getPropertySheetPage
import org.eclipse.ui.views.properties.IPropertySheetPage; //導入依賴的package包/類
/**
* This accesses a cached version of the property sheet.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public IPropertySheetPage getPropertySheetPage ()
{
PropertySheetPage propertySheetPage =
new ExtendedPropertySheetPage ( editingDomain )
{
@Override
public void setSelectionToViewer ( List<?> selection )
{
VisualInterfaceEditor.this.setSelectionToViewer ( selection );
VisualInterfaceEditor.this.setFocus ();
}
@Override
public void setActionBars ( IActionBars actionBars )
{
super.setActionBars ( actionBars );
getActionBarContributor ().shareGlobalActions ( this, actionBars );
}
};
propertySheetPage.setPropertySourceProvider ( new AdapterFactoryContentProvider ( adapterFactory ) );
propertySheetPages.add ( propertySheetPage );
return propertySheetPage;
}
示例14: getPropertySheetPage
import org.eclipse.ui.views.properties.IPropertySheetPage; //導入依賴的package包/類
/**
* This accesses a cached version of the property sheet.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public IPropertySheetPage getPropertySheetPage ()
{
PropertySheetPage propertySheetPage = new ExtendedPropertySheetPage ( editingDomain, ExtendedPropertySheetPage.Decoration.MANUAL) {
@Override
public void setSelectionToViewer ( List<?> selection )
{
DeploymentEditor.this.setSelectionToViewer ( selection );
DeploymentEditor.this.setFocus ();
}
@Override
public void setActionBars ( IActionBars actionBars )
{
super.setActionBars ( actionBars );
getActionBarContributor ().shareGlobalActions ( this, actionBars );
}
};
propertySheetPage.setPropertySourceProvider ( new AdapterFactoryContentProvider ( adapterFactory ) );
propertySheetPages.add ( propertySheetPage );
return propertySheetPage;
}
示例15: getPropertySheetPage
import org.eclipse.ui.views.properties.IPropertySheetPage; //導入依賴的package包/類
/**
* This accesses a cached version of the property sheet.
* <!-- begin-user-doc -->
* <!-- end-user-doc -->
* @generated
*/
public IPropertySheetPage getPropertySheetPage ()
{
PropertySheetPage propertySheetPage = new ExtendedPropertySheetPage ( editingDomain, ExtendedPropertySheetPage.Decoration.MANUAL) {
@Override
public void setSelectionToViewer ( List<?> selection )
{
SetupEditor.this.setSelectionToViewer ( selection );
SetupEditor.this.setFocus ();
}
@Override
public void setActionBars ( IActionBars actionBars )
{
super.setActionBars ( actionBars );
getActionBarContributor ().shareGlobalActions ( this, actionBars );
}
};
propertySheetPage.setPropertySourceProvider ( new AdapterFactoryContentProvider ( adapterFactory ) );
propertySheetPages.add ( propertySheetPage );
return propertySheetPage;
}