Class DefaultFieldHandlerFactory
- java.lang.Object
-
- net.sf.jguiraffe.gui.builder.components.DefaultFieldHandlerFactory
-
- All Implemented Interfaces:
FieldHandlerFactory
public class DefaultFieldHandlerFactory extends Object implements FieldHandlerFactory
A default implementation of the
FieldHandlerFactory
interface.This implementation creates objects of class
. All information needed to initialize such an object are obtained from the passed in input component tag.DefaultFieldHandler
- Version:
- $Id: DefaultFieldHandlerFactory.java 205 2012-01-29 18:29:57Z oheger $
- Author:
- Oliver Heger
-
-
Constructor Summary
Constructors Constructor Description DefaultFieldHandlerFactory()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description FieldHandler
createFieldHandler(InputComponentTag tag, ComponentHandler<?> componentHandler)
Creates a new field handler object for the specified input component tag.
-
-
-
Method Detail
-
createFieldHandler
public FieldHandler createFieldHandler(InputComponentTag tag, ComponentHandler<?> componentHandler) throws FormBuilderException
Creates a new field handler object for the specified input component tag.- Specified by:
createFieldHandler
in interfaceFieldHandlerFactory
- Parameters:
tag
- the component tagcomponentHandler
- the component handler- Returns:
- the new field handler object
- Throws:
FormBuilderException
- if an error occurs
-
-