本文整理了Java中org.eclipse.jface.wizard.Wizard.setWindowTitle()
方法的一些代码示例,展示了Wizard.setWindowTitle()
的具体用法。这些代码示例主要来源于Github
/Stackoverflow
/Maven
等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Wizard.setWindowTitle()
方法的具体详情如下:
包路径:org.eclipse.jface.wizard.Wizard
类名称:Wizard
方法名:setWindowTitle
[英]Sets the window title for the container that hosts this page to the given string.
[中]将承载此页面的容器的窗口标题设置为给定字符串。
代码示例来源:origin: org.eclipse.pde/org.eclipse.pde.ui
wizard.setWindowTitle(Messages.AddBundleContainerSelectionPage_1);
return wizard;
代码示例来源:origin: org.eclipse.pde/org.eclipse.pde.ui
wizard.setWindowTitle(Messages.AddBundleContainerSelectionPage_1);
return wizard;
代码示例来源:origin: org.eclipse.pde/org.eclipse.pde.ui
wizard.setWindowTitle(Messages.AddBundleContainerSelectionPage_1);
return wizard;
代码示例来源:origin: org.apache.directory.studio/ldapbrowser.common
/**
* Creates a new instance of AttributeWizard with the given initial attribute description.
*
* @param title the title
* @param entry the entry
* @param showSubschemaAttributesOnly the show subschema attributes only
* @param hideExistingAttributes the hide existing attributes
* @param attributeDescription the attribute description
*/
public AttributeWizard( String title, boolean showSubschemaAttributesOnly, boolean hideExistingAttributes,
String attributeDescription, IEntry entry )
{
super.setWindowTitle( title );
super.setNeedsProgressMonitor( false );
this.initialShowSubschemaAttributesOnly = showSubschemaAttributesOnly;
this.initialHideExistingAttributes = hideExistingAttributes;
this.initialAttributeDescription = attributeDescription;
this.initialEntry = entry;
}
代码示例来源:origin: org.apache.directory.studio/ldapbrowser.common
/**
* Creates a new instance of AttributeWizard with an empty
* attribute description.
*/
public AttributeWizard()
{
super.setWindowTitle( Messages.getString( "AttributeWizard.NewAttribute" ) ); //$NON-NLS-1$
super.setNeedsProgressMonitor( false );
this.initialShowSubschemaAttributesOnly = true;
this.initialHideExistingAttributes = true;
this.initialAttributeDescription = ""; //$NON-NLS-1$
this.initialEntry = null;
}
代码示例来源:origin: org.eclipse.pde/org.eclipse.pde.ui
wizard.setWindowTitle(Messages.AddBundleContainerSelectionPage_1);
return wizard;
代码示例来源:origin: org.eclipse.pde/org.eclipse.pde.ui
wizard.setWindowTitle(Messages.AddBundleContainerSelectionPage_1);
return wizard;
代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.ui.ide
markerDescription);
Wizard wizard = new QuickFixWizard(description, selectedMarkers, resolutionsMap, view.getSite());
wizard.setWindowTitle(MarkerMessages.resolveMarkerAction_dialogTitle);
WizardDialog dialog = new QuickFixWizardDialog(view.getSite().getShell(), wizard);
dialog.open();
代码示例来源:origin: org.eclipse.emf/org.eclipse.emf.converter
wizard.setWindowTitle(getWizard().getWindowTitle());
代码示例来源:origin: org.eclipse/org.eclipse.jst.pagedesigner
wizard.setWindowTitle(AttributeGroupMessages.getString(
"DialogUtil.createTitle", group.getTagName())); //$NON-NLS-1$
wizard.setDefaultPageImageDescriptor(PDPlugin.getDefault()
内容来源于网络,如有侵权,请联系作者删除!