org.eclipse.jface.wizard.Wizard.setWindowTitle()方法的使用及代码示例

x33g5p2x  于2022-02-03 转载在 其他  
字(2.9k)|赞(0)|评价(0)|浏览(135)

本文整理了Java中org.eclipse.jface.wizard.Wizard.setWindowTitle()方法的一些代码示例,展示了Wizard.setWindowTitle()的具体用法。这些代码示例主要来源于Github/Stackoverflow/Maven等平台,是从一些精选项目中提取出来的代码,具有较强的参考意义,能在一定程度帮忙到你。Wizard.setWindowTitle()方法的具体详情如下:
包路径:org.eclipse.jface.wizard.Wizard
类名称:Wizard
方法名:setWindowTitle

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()

相关文章