Groovy

Using Groovy

Language Guide

Groovy Features

Modules

Examples

Useful Links

IDE Support

Support

Community

Developers

Tools we use

IntelliJ IDEA
YourKit profiler

Feeds


Site
News
GroovySWT

The purpose of this module is to be able to write easily an eclipse SWT application by using the NodeBuilder mechanism .
The sources can be found here :

package com.dacelo.guidedsales.ui

class About extends Script {
        
    run( ) {     
		subapp = guiBuilder.shell( parent ) {
		
			gridLayout()
			
			group( text:"Groovy SWT", background:[255, 255, 255] ) {
				gridLayout()
				
				label( text:"groove fun !" ,background:[255, 255, 255] )
				label( text:"Email: ckl@dacelo.nl", background:[255, 255, 255] )
			}
		}

		subapp.pack()
		subapp.open()
	}
	
}