Groovy Documentation

org.grails.plugin.vaadin.gsp
[Groovy] Class GspComponentConfig

java.lang.Object
  org.grails.plugin.vaadin.gsp.GspComponentConfig

class GspComponentConfig

Holds details for configuring a Vaadin Component.

Authors:
Francis McKenzie


Property Summary
Class componentClass

The class of the Vaadin Component that this configuration applies to.

Map props

A map containing the properties to apply to the Vaadin Component.

String type

The type of the configuration.

 
Constructor Summary
GspComponentConfig(Class componentClass, String type, Map properties)

Constructs a new configuration for a specific Vaadin Component class.

 
Method Summary
 
Methods inherited from class Object
wait, wait, wait, equals, toString, hashCode, getClass, notify, notifyAll
 

Property Detail

componentClass

Class componentClass
The class of the Vaadin Component that this configuration applies to. For example, com.vaadin.ui.Table


props

Map props
A map containing the properties to apply to the Vaadin Component.


type

String type
The type of the configuration. For example, a configuration holding a column definition for a Vaadin table has type 'column'.


 
Constructor Detail

GspComponentConfig

GspComponentConfig(Class componentClass, String type, Map properties)
Constructs a new configuration for a specific Vaadin Component class.
Parameters:
componentClass - The class of the Vaadin Component.
type - The type of the configuration, for example 'column'
properties - The configuration properties to be applied to the Vaadin Component.


 

Groovy Documentation