/**
* Displays a Yes/No question to the user with the specified message and returns the user's response.
*
* @param message
* the question to ask
* @return <code>true</code> for Yes, and <code>false</code> for No
*/
private boolean queryYesNoQuestion(String message) {
MessageDialog dialog = new MessageDialog(getContainer().getShell(),
IDEWorkbenchMessages.Question,
(Image) null, message, MessageDialog.NONE,
new String[] { IDialogConstants.YES_LABEL, IDialogConstants.NO_LABEL }, 0) {
@Override
protected int getShellStyle() {
return super.getShellStyle() | SWT.SHEET;
}
};
return dialog.open() == 0;
}
AbstractExportToSingleFileWizardPage.java 文件源码
java
阅读 26
收藏 0
点赞 0
评论 0
项目:n4js
作者:
评论列表
文章目录