/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
- swing.edt {
- frame(title:'Frame', defaultCloseOperation:JFrame.EXIT_ON_CLOSE, pack:true, show:true) {
- vbox {
- textlabel = label("Click the button!")
- button(
- text:'Click Me',
- actionPerformed: {
- count++
- textlabel.text = "Clicked ${count} time(s)."
- println "Clicked!"
- }
- )
- widget(sharedPanel())
- widget(sharedPanel())
- <spot>} } }</spot>