Package muntjac :: Package terminal :: Module parameter_handler :: Class IParameterHandler
[hide private]
[frames] | no frames]

Class IParameterHandler

source code

object --+
         |
        IParameterHandler
Known Subclasses:

IParameterHandler is implemented by classes capable of handling external parameters.

What parameters are provided depend on what the Terminal provides and if the application is deployed as a servlet. URL GET parameters are typically provided to the handleParameters method.

A IParameterHandler must be registered to a Window using Window.addParameterHandler to be called when parameters are available.


Authors:
Vaadin Ltd., Richard Lincoln

Version: 1.1.2

Instance Methods [hide private]
 
handleParameters(self, parameters)
Handles the given parameters.
source code

Inherited from object: __delattr__, __format__, __getattribute__, __hash__, __init__, __new__, __reduce__, __reduce_ex__, __repr__, __setattr__, __sizeof__, __str__, __subclasshook__

Properties [hide private]

Inherited from object: __class__

Method Details [hide private]

handleParameters(self, parameters)

source code 

Handles the given parameters. All parameters names are of type string and the values are string arrays.

Parameters:
  • parameters - an unmodifiable map which contains the parameter names and values