tags:

views:

29

answers:

1

I would like to reuse my GWT linker in several projects, with different configurations. Is it possible to define properties or parameters to the linker in my module configuration?

+2  A: 

Use LinkerContext to get ConfigurationProperty, it contains all configurationproperty-values in your module.

To set a configuration property value:

<set-configuration-property name="Patrik" value="wasHere" />
pathed