org.eclipse.jface.dialogs.ErrorDialog.shouldShowDetailsButton()方法的使用及代码示例

x33g5p2x  于2022-01-19 转载在 其他  
字(1.7k)|赞(0)|评价(0)|浏览(108)

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

ErrorDialog.shouldShowDetailsButton介绍

[英]Return whether the Details button should be included. This method is invoked once when the dialog is built. Default implementation is tight to default implementation of #createDropDownList(Composite) and displays details button if there is anything on the display list.
[中]返回是否应包括“详细信息”按钮。此方法在生成对话框时调用一次。默认实现与#createDropDownList(复合)的默认实现紧密相连,如果显示列表中有任何内容,则显示详细信息按钮。

代码示例

代码示例来源:origin: org.eclipse.platform/org.eclipse.jface

/**
 * Create the details button if it should be included.
 *
 * @param parent
 *            the parent composite
 * @since 3.2
 */
protected void createDetailsButton(Composite parent) {
  if (shouldShowDetailsButton()) {
    detailsButton = createButton(parent, IDialogConstants.DETAILS_ID,
        IDialogConstants.SHOW_DETAILS_LABEL, false);
  }
}

代码示例来源:origin: org.eclipse.scout.sdk.deps/org.eclipse.jface

/**
 * Create the details button if it should be included.
 *
 * @param parent
 *            the parent composite
 * @since 3.2
 */
protected void createDetailsButton(Composite parent) {
  if (shouldShowDetailsButton()) {
    detailsButton = createButton(parent, IDialogConstants.DETAILS_ID,
        IDialogConstants.SHOW_DETAILS_LABEL, false);
  }
}

代码示例来源:origin: org.eclipse.rap/org.eclipse.rap.jface

/**
 * Create the details button if it should be included.
 * 
 * @param parent
 *            the parent composite
 */
protected void createDetailsButton(Composite parent) {
  if (shouldShowDetailsButton()) {
    detailsButton = createButton(parent, IDialogConstants.DETAILS_ID,
        IDialogConstants.get().SHOW_DETAILS_LABEL, false);
  }
}

相关文章