blob: 2ba6cfabe49e8d985976e176030790e420776a99 [file] [log] [blame]
groovy.swing.SwingBuilder.build {
frame(id: 'f', title: 'Groovy Blogs', visible: true) {
scrollPane {
table {
tableModel(list: items) {
cols.each { col ->
closureColumn header: col, read: { it[col].text() }
} } } } }
f.pack()
}
-----
groovy.swing.SwingBuilder.build {
frame(id: 'f', title: 'Groovy Blogs', visible: true) {
scrollPane {
table {
tableModel(list: items) {
cols.each { col ->
closureColumn header: col, read: { it[col].text() }
} } } } }
f.pack()
}