/plugins/groovy/resources/intentionDescriptions/ConvertToGeeseBracesIntention/after.groovy.template

https://bitbucket.org/nbargnesi/idea · Unknown · 15 lines · 15 code · 0 blank · 0 comment · 0 complexity · ee5d31a695c5352b3b28bfd6a3e1bf5a MD5 · raw file

  1. swing.edt {
  2. frame(title:'Frame', defaultCloseOperation:JFrame.EXIT_ON_CLOSE, pack:true, show:true) {
  3. vbox {
  4. textlabel = label("Click the button!")
  5. button(
  6. text:'Click Me',
  7. actionPerformed: {
  8. count++
  9. textlabel.text = "Clicked ${count} time(s)."
  10. println "Clicked!"
  11. }
  12. )
  13. widget(sharedPanel())
  14. widget(sharedPanel())
  15. <spot>} } }</spot>