本文整理汇总了Java中org.eclipse.jface.wizard.WizardPage.setDescription方法的典型用法代码示例。如果您正苦于以下问题:Java WizardPage.setDescription方法的具体用法?Java WizardPage.setDescription怎么用?Java WizardPage.setDescription使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.jface.wizard.WizardPage
的用法示例。
在下文中一共展示了WizardPage.setDescription方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: addPages
import org.eclipse.jface.wizard.WizardPage; //导入方法依赖的package包/类
public void addPages(Wizard wizard) {
WizardPage page = createPage(0, IHelpContextIds.TEMPLATE_SEQUENTIAL_EXTENDED_LANGUAGE);
page.setTitle(WizardTemplateMessages.SequentialExtendedLanguageTemplate_title);
page.setDescription(WizardTemplateMessages.SequentialExtendedLanguageTemplate_desc);
wizard.addPage(page);
markPagesAdded();
}
示例2: addPages
import org.eclipse.jface.wizard.WizardPage; //导入方法依赖的package包/类
public void addPages(Wizard wizard) {
WizardPage page = createPage(0, IHelpContextIds.TEMPLATE_SEQUENTIAL_SINGLE_LANGUAGE);
page.setTitle(WizardTemplateMessages.SequentialSingleLanguageTemplate_title);
page.setDescription(WizardTemplateMessages.SequentialSingleLanguageTemplate_desc);
wizard.addPage(page);
markPagesAdded();
}
示例3: addPages
import org.eclipse.jface.wizard.WizardPage; //导入方法依赖的package包/类
@Override
public void addPages ( final Wizard wizard )
{
if ( this.id == null )
{
final WizardPage page = createPage ( 0, IHelpContextIds.TEMPLATE_DETAIL_VIEW );
page.setTitle ( Messages.DetailViewTemplate_Page_Title );
page.setDescription ( Messages.DetailViewTemplate_Page_Description );
wizard.addPage ( page );
markPagesAdded ();
}
}
示例4: addPages
import org.eclipse.jface.wizard.WizardPage; //导入方法依赖的package包/类
@Override
public void addPages ( final Wizard wizard )
{
final WizardPage page = createPage ( 0, IHelpContextIds.TEMPLATE_CONNECTION );
page.setTitle ( "Connection" );
page.setDescription ( "Connection options" );
wizard.addPage ( page );
markPagesAdded ();
}
示例5: CloudFoundryCredentialsPart
import org.eclipse.jface.wizard.WizardPage; //导入方法依赖的package包/类
public CloudFoundryCredentialsPart(CloudFoundryServer cfServer, WizardPage wizardPage) {
this(cfServer);
if (wizardPage != null) {
wizardPage.setTitle(NLS.bind(Messages.CloudFoundryCredentialsPart_TEXT_CREDENTIAL_WIZ_TITLE, service));
wizardPage.setDescription(Messages.SERVER_WIZARD_VALIDATOR_CLICK_TO_VALIDATE);
ImageDescriptor banner = CloudFoundryImages.getWizardBanner(serverTypeId);
if (banner != null) {
wizardPage.setImageDescriptor(banner);
}
runnableContext = wizardPage.getWizard() != null && wizardPage.getWizard().getContainer() != null ? wizardPage
.getWizard().getContainer() : null;
}
}
示例6: CloudSpacesSelectionPart
import org.eclipse.jface.wizard.WizardPage; //导入方法依赖的package包/类
public CloudSpacesSelectionPart(CloudSpacesDelegate cloudSpaceServerDelegate, CloudFoundryServer cloudServer,
WizardPage wizardPage) {
this.cloudSpaceServerDelegate = cloudSpaceServerDelegate;
String serverTypeId = cloudServer.getServer().getServerType().getId();
wizardPage.setTitle(Messages.CloudSpacesSelectionPart_TEXT_ORG_AND_SPACE);
wizardPage.setDescription(DEFAULT_DESCRIPTION);
ImageDescriptor banner = CloudFoundryImages.getWizardBanner(serverTypeId);
if (banner != null) {
wizardPage.setImageDescriptor(banner);
}
}
示例7: DockerFoundryCredentialsPart
import org.eclipse.jface.wizard.WizardPage; //导入方法依赖的package包/类
public DockerFoundryCredentialsPart(DockerFoundryServer cfServer, WizardPage wizardPage) {
this(cfServer);
if (wizardPage != null) {
wizardPage.setTitle(NLS.bind(Messages.DockerFoundryCredentialsPart_TEXT_CREDENTIAL_WIZ_TITLE, service));
wizardPage.setDescription(Messages.SERVER_WIZARD_VALIDATOR_CLICK_TO_VALIDATE);
ImageDescriptor banner = DockerFoundryImages.getWizardBanner(serverTypeId);
if (banner != null) {
wizardPage.setImageDescriptor(banner);
}
runnableContext = wizardPage.getWizard() != null && wizardPage.getWizard().getContainer() != null ? wizardPage
.getWizard().getContainer() : null;
}
}
示例8: addPages
import org.eclipse.jface.wizard.WizardPage; //导入方法依赖的package包/类
public void addPages(Wizard wizard) {
WizardPage page = createPage(0, IHelpContextIds.TEMPLATE_SIMPLE_MT_MELANGE);
page.setTitle(MelangeTemplateMessages.SimpleMTTemplate_title);
page.setDescription(MelangeTemplateMessages.SimpleMTTemplate_desc);
wizard.addPage(page);
markPagesAdded();
}
示例9: addPages
import org.eclipse.jface.wizard.WizardPage; //导入方法依赖的package包/类
@Override
public void addPages() {
WizardPage page = new SelectionPage("first");
page.setTitle("Source Element");
page.setDescription("Select the source element of this model change");
addPage(page);
}
示例10: addPages
import org.eclipse.jface.wizard.WizardPage; //导入方法依赖的package包/类
@Override
public void addPages() {
WizardPage page = new SelectionPage("first");
page.setTitle("Target Element");
page.setDescription("Select the target element of this model change");
addPage(page);
}
示例11: addPages
import org.eclipse.jface.wizard.WizardPage; //导入方法依赖的package包/类
@Override
public void addPages() {
WizardPage page = new SelectionPage("first");
page.setTitle("Referred Element");
page.setDescription("Select the element being referred by this model change");
addPage(page);
}
示例12: addPages
import org.eclipse.jface.wizard.WizardPage; //导入方法依赖的package包/类
public void addPages(Wizard wizard) {
WizardPage page = createPage(0, IHelpContextIds.TEMPLATE_MINI_ECORE_ASPECT_SAMPLE);
page.setTitle(K3TemplateMessages.MiniEcoreAspectSampleTemplate_title);
page.setDescription(K3TemplateMessages.MiniEcoreAspectSampleTemplate_desc);
wizard.addPage(page);
markPagesAdded();
}
示例13: addPages
import org.eclipse.jface.wizard.WizardPage; //导入方法依赖的package包/类
public void addPages(Wizard wizard) {
WizardPage page = createPage(0, IHelpContextIds.TEMPLATE_ECORE_ASPECT);
page.setTitle(K3TemplateMessages.UserEcoreBasicAspectTemplate_title);
page.setDescription(K3TemplateMessages.UserEcoreBasicAspectTemplate_desc);
wizard.addPage(page);
markPagesAdded();
}
示例14: addPages
import org.eclipse.jface.wizard.WizardPage; //导入方法依赖的package包/类
public void addPages(Wizard wizard) {
WizardPage page = createPage(0, IHelpContextIds.TEMPLATE_MINI_ASPECT_SAMPLE);
page.setTitle(K3TemplateMessages.MiniAspectSampleTemplate_title);
page.setDescription(K3TemplateMessages.MiniAspectSampleTemplate_desc);
wizard.addPage(page);
markPagesAdded();
}
示例15: addPages
import org.eclipse.jface.wizard.WizardPage; //导入方法依赖的package包/类
@Override
public void addPages(Wizard wizard) {
WizardPage page = createPage(0, IHelpContextIds.TEMPLATE_ECORE_ASPECT_WITH_MELANGE);
page.setTitle(K3TemplateMessages.UserEcoreBasicAspectWithMelangeTemplate_title);
page.setDescription(K3TemplateMessages.UserEcoreBasicAspectWithMelangeTemplate_desc);
wizard.addPage(page);
markPagesAdded();
}