Skip to content

Instantly share code, notes, and snippets.

@zaki50
Created February 9, 2012 23:57
Show Gist options
  • Save zaki50/1784445 to your computer and use it in GitHub Desktop.
Save zaki50/1784445 to your computer and use it in GitHub Desktop.
SWT でエラーダイアログを出すコードのための eclipse の code template
${:import(org.eclipse.swt.widgets.MessageBox)}final MessageBox ${message:newName(org.eclipse.swt.widgets.MessageBox)} = new MessageBox(getShell(), SWT.NULL | SWT.ICON_ERROR);
${message:newName(org.eclipse.swt.widgets.MessageBox)}.setMessage("${cursor}");
${message:newName(org.eclipse.swt.widgets.MessageBox)}.open();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment