Class IteratorHandler
java.lang.Object
ch.tocco.nice2.model.form.spi.reader.handler.AbstractComponentHandler<IteratorComponent>
ch.tocco.nice2.model.form.impl.reader.handlers.AbstractDataComponentHandler<IteratorComponent>
ch.tocco.nice2.model.form.impl.reader.handlers.IteratorHandler
- All Implemented Interfaces:
ValidatorReceivable
-
Field Summary
Fields inherited from class ch.tocco.nice2.model.form.impl.reader.handlers.AbstractDataComponentHandler
data, validatorHandlerContextFactory
Fields inherited from class ch.tocco.nice2.model.form.spi.reader.handler.AbstractComponentHandler
displayType, field, forceEditable, label, name, receiver, scopes, useLabel
-
Constructor Summary
ConstructorDescriptionIteratorHandler
(ComponentReceiver receiver, ValidatorHandlerContextFactory validatorHandlerContextFactory, DefaultValueResolver resolver) -
Method Summary
Modifier and TypeMethodDescriptionprotected void
Will be called at the or towards the end of afterFinish().protected void
Will be called after running theAbstractComponentHandler.finish()
-Method.protected Class
<? extends IteratorComponent> A concrete class which implmentsAbstractComponentHandler
(not the handler).protected Class
<IteratorComponent> Return the Interface which represents this component (not the handler).void
privileged
(boolean privileged) Methods inherited from class ch.tocco.nice2.model.form.impl.reader.handlers.AbstractDataComponentHandler
addAutoComplete, addDefaultValues, addValidations, addValidator, beforeFinish, getDefaultValidators, setConstriction, setData, setDataType, setDefaultLangOnly, setEventHandler, setIgnoreCopy, simpleSearch, startElement
Methods inherited from class ch.tocco.nice2.model.form.spi.reader.handler.AbstractComponentHandler
addAttributeProps, addExtProps, createOrGetComponent, disableOldClient, doFinish, finish, forceEditable, label, setDisplayType, setLabel, setName, setPosition, setScopes, setUseLabel
-
Constructor Details
-
IteratorHandler
public IteratorHandler(ComponentReceiver receiver, ValidatorHandlerContextFactory validatorHandlerContextFactory, DefaultValueResolver resolver)
-
-
Method Details
-
tag
@AnyElement @Cardinality(min=1, max=2147483647) public Object tag(@ElementName String tagName) throws ModelBuildException - Throws:
ModelBuildException
-
privileged
-
afterDataSet
protected void afterDataSet()Description copied from class:AbstractDataComponentHandler
Will be called at the or towards the end of afterFinish().This is abstract so that every implementer is forced to know about its existence.
For an example see
TextAreaHandler.afterDataSet()
; it assigns additional, component-specific data read from xml to the component: field.setRowHeight(rowHeight);- Specified by:
afterDataSet
in classAbstractDataComponentHandler<IteratorComponent>
-
getImplClass
Description copied from class:AbstractComponentHandler
A concrete class which implmentsAbstractComponentHandler
(not the handler). Expects a public-constructor which takes the parent Compononent.- Specified by:
getImplClass
in classAbstractComponentHandler<IteratorComponent>
- Returns:
- the class
-
getInterface
Description copied from class:AbstractComponentHandler
Return the Interface which represents this component (not the handler). This interface is normallyAbstractComponentHandler
- Specified by:
getInterface
in classAbstractComponentHandler<IteratorComponent>
- Returns:
- interface-class
-
afterFinish
Description copied from class:AbstractComponentHandler
Will be called after running theAbstractComponentHandler.finish()
-Method. this.field will be ready to fill.- Overrides:
afterFinish
in classAbstractDataComponentHandler<IteratorComponent>
- Throws:
ModelBuildException
- See Also:
-