本文整理汇总了Java中org.eclipse.jface.dialogs.InputDialog.close方法的典型用法代码示例。如果您正苦于以下问题:Java InputDialog.close方法的具体用法?Java InputDialog.close怎么用?Java InputDialog.close使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类org.eclipse.jface.dialogs.InputDialog
的用法示例。
在下文中一共展示了InputDialog.close方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: createNewHost
import org.eclipse.jface.dialogs.InputDialog; //导入方法依赖的package包/类
private void createNewHost() {
final IHost[] hosts = getHosts();
IInputValidator validator = new HostNameInputValidator(hosts);
InputDialog inputDialog = new InputDialog(getShell(), Messages.New_RPI_Host, Messages.Enter_Host_Name, "", validator); //$NON-NLS-3$ //$NON-NLS-1$
int result = inputDialog.open();
if (result == Dialog.OK) {
String hostName = inputDialog.getValue();
inputDialog.close();
try {
IHost host = RSECorePlugin.getTheSystemRegistry().createHost(
RSECorePlugin.getTheCoreRegistry().getSystemTypeById(IRSESystemType.SYSTEMTYPE_SSH_ONLY_ID), hostName, hostName, hostName);
updateRPICombo(getHosts(), host);
} catch (Exception ex) {
LaunchPlugin.reportError(Messages.Create_Config_Failed, ex);
}
}
}
示例2: ask
import org.eclipse.jface.dialogs.InputDialog; //导入方法依赖的package包/类
/**
* @see gnu.jemacs.buffer.EFrame#ask(java.lang.String)
*/
public String ask(String prompt)
{
Shell shell = new Shell();
InputDialog inputDialog = new InputDialog(shell, "Jemacs input window", prompt, "", null);
inputDialog.open();
String result = inputDialog.getValue();
inputDialog.close();
return result;
}