Uses of Interface
org.apache.cocoon.forms.formmodel.WidgetDefinition

Packages that use WidgetDefinition
org.apache.cocoon.forms.formmodel   
org.apache.cocoon.forms.validation   
org.apache.cocoon.forms.validation.impl   
 

Uses of WidgetDefinition in org.apache.cocoon.forms.formmodel
 

Subinterfaces of WidgetDefinition in org.apache.cocoon.forms.formmodel
 interface ContainerDefinition
          Interface to be implemented by WidgetDefinitions for Widgets which contain other widgets.
 

Classes in org.apache.cocoon.forms.formmodel that implement WidgetDefinition
 class AbstractContainerDefinition
          The AbstractContainerDefinition corresponding to an AbstractContainerWidget.
 class AbstractDatatypeWidgetDefinition
          Base class for WidgetDefinitions that use a Datatype and SelectionList.
 class AbstractWidgetDefinition
          Provides functionality that is common across many WidgetDefinition implementations.
 class ActionDefinition
          The WidgetDefinition part of a Action widget, see Action for more information.
 class AddRowActionDefinition
          The definition for a repeater action that adds a row to a sibling repeater.
 class AggregateFieldDefinition
          The WidgetDefinition part of a AggregateField widget, see AggregateField for more information.
 class BooleanFieldDefinition
          The WidgetDefinition part of a BooleanField widget, see BooleanField for more information.
 class ClassDefinition
          A WidgetDefinition which holds a collection of Widgets and which can be instantiated with a NewDefinition.
 class DeleteRowsActionDefinition
          The definition for a repeater action that deletes the selected rows of a sibling repeater.
 class FieldDefinition
          The WidgetDefinition part of a Field widget, see Field for more information.
 class FormDefinition
          The WidgetDefinition part of a Form widget, see Form for more information.
 class MessagesDefinition
          The WidgetDefinition part of a Messages widget, see Messages for more information.
 class MultiValueFieldDefinition
          The WidgetDefinition part of a MultiValueField widget, see MultiValueField for more information.
 class NewDefinition
          This is the "WidgetDefinition" which is used to instantiate a ClassDefinition.
 class OutputDefinition
          The WidgetDefinition part of a Output widget.
 class RepeaterActionDefinition
          Abstract repeater action.
 class RepeaterDefinition
          The WidgetDefinition part of a Repeater widget, see Repeater for more information.
 class RowActionDefinition
           
static class RowActionDefinition.AddAfterDefinition
           
static class RowActionDefinition.DeleteRowDefinition
           
static class RowActionDefinition.MoveDownDefinition
           
static class RowActionDefinition.MoveUpDefinition
           
 class StructDefinition
          The WidgetDefinition corresponding to a Struct widget.
 class SubmitDefinition
          Definition for a Submit.
 class UnionDefinition
          The WidgetDefinition corresponding to a Union widget.
 class UploadDefinition
          The definition of an upload widget.
 

Fields in org.apache.cocoon.forms.formmodel declared as WidgetDefinition
protected  WidgetDefinition AbstractWidgetDefinition.parent
           
 

Methods in org.apache.cocoon.forms.formmodel that return WidgetDefinition
 WidgetDefinition WidgetDefinitionList.getWidgetDefinition(String id)
           
 WidgetDefinition WidgetDefinitionBuilder.buildWidgetDefinition(Element widgetElement)
           
 WidgetDefinition UploadDefinitionBuilder.buildWidgetDefinition(Element widgetElement)
           
protected  WidgetDefinition Upload.getDefinition()
           
 WidgetDefinition UnionDefinitionBuilder.buildWidgetDefinition(Element element)
           
protected  WidgetDefinition Union.getDefinition()
           
 WidgetDefinition SubmitDefinitionBuilder.buildWidgetDefinition(Element widgetElement)
           
 WidgetDefinition StructDefinitionBuilder.buildWidgetDefinition(Element element)
           
protected  WidgetDefinition Struct.getDefinition()
           
 WidgetDefinition RowActionDefinitionBuilder.buildWidgetDefinition(Element widgetElement)
           
 WidgetDefinition RepeaterDefinitionBuilder.buildWidgetDefinition(Element repeaterElement)
           
 WidgetDefinition RepeaterActionDefinitionBuilder.buildWidgetDefinition(Element widgetElement)
           
protected  WidgetDefinition Repeater.getDefinition()
           
protected  WidgetDefinition Repeater.RepeaterRow.getDefinition()
           
 WidgetDefinition OutputDefinitionBuilder.buildWidgetDefinition(Element widgetElement)
           
protected  WidgetDefinition Output.getDefinition()
           
 WidgetDefinition NewDefinitionBuilder.buildWidgetDefinition(Element element)
           
 WidgetDefinition MultiValueFieldDefinitionBuilder.buildWidgetDefinition(Element widgetElement)
           
protected  WidgetDefinition MultiValueField.getDefinition()
           
 WidgetDefinition MessagesDefinitionBuilder.buildWidgetDefinition(Element widgetElement)
           
protected  WidgetDefinition Messages.getDefinition()
           
 WidgetDefinition FormDefinitionBuilder.buildWidgetDefinition(Element formElement)
           
protected  WidgetDefinition Form.getDefinition()
           
 WidgetDefinition FieldDefinitionBuilder.buildWidgetDefinition(Element widgetElement)
           
protected  WidgetDefinition Field.getDefinition()
           
 WidgetDefinition ContainerDefinition.getWidgetDefinition(String id)
          Gets a (sub) widget definition from this definition.
 WidgetDefinition ClassDefinitionBuilder.buildWidgetDefinition(Element element)
           
 WidgetDefinition ButtonDefinitionBuilder.buildWidgetDefinition(Element widgetElement)
           
 WidgetDefinition BooleanFieldDefinitionBuilder.buildWidgetDefinition(Element widgetElement)
           
protected  WidgetDefinition BooleanField.getDefinition()
           
 WidgetDefinition AggregateFieldDefinitionBuilder.buildWidgetDefinition(Element widgetElement)
           
 WidgetDefinition ActionDefinitionBuilder.buildWidgetDefinition(Element widgetElement)
           
protected  WidgetDefinition Action.getDefinition()
           
protected  WidgetDefinition AbstractWidgetDefinitionBuilder.buildAnotherWidgetDefinition(Element widgetDefinition)
           
 WidgetDefinition AbstractWidgetDefinition.getParent()
          Gets the parent of this definition.
protected abstract  WidgetDefinition AbstractWidget.getDefinition()
          Concrete subclasses should allow access to their underlaying Definition through this method.
 WidgetDefinition AbstractContainerDefinition.getWidgetDefinition(String id)
           
 

Methods in org.apache.cocoon.forms.formmodel with parameters of type WidgetDefinition
 void WidgetDefinitionList.addWidgetDefinition(WidgetDefinition widgetDefinition)
           
 void WidgetDefinitionList.resolve(List parents, WidgetDefinition parent)
           
 void WidgetDefinition.setParent(WidgetDefinition definition)
          Sets the parent of this definition
 void NewDefinition.resolve(List parents, WidgetDefinition parent)
           
 void ContainerDefinition.resolve(List parents, WidgetDefinition parent)
          Resolve references to widget definition classes
 void ContainerDefinition.addWidgetDefinition(WidgetDefinition definition)
          Adds a (sub) widget definition to this definition.
 void AggregateFieldDefinition.addWidgetDefinition(WidgetDefinition widgetDefinition)
           
 void AbstractWidgetDefinition.setParent(WidgetDefinition definition)
          Sets the parent of this definition
 void AbstractContainerDefinition.addWidgetDefinition(WidgetDefinition definition)
           
 void AbstractContainerDefinition.resolve(List parents, WidgetDefinition parent)
           
 

Constructors in org.apache.cocoon.forms.formmodel with parameters of type WidgetDefinition
WidgetDefinitionList(WidgetDefinition definition)
           
 

Uses of WidgetDefinition in org.apache.cocoon.forms.validation
 

Methods in org.apache.cocoon.forms.validation with parameters of type WidgetDefinition
 WidgetValidator WidgetValidatorBuilder.build(Element validationRuleElement, WidgetDefinition definition)
          Builds a WidgetValidator for a particular widget definition.
 

Uses of WidgetDefinition in org.apache.cocoon.forms.validation.impl
 

Methods in org.apache.cocoon.forms.validation.impl with parameters of type WidgetDefinition
 WidgetValidator ValueCountValidatorBuilder.build(Element validationRuleElement, WidgetDefinition definition)
           
 WidgetValidator RegExpValidatorBuilder.build(Element validationRuleElement, WidgetDefinition definition)
           
 WidgetValidator RangeValidatorBuilder.build(Element validationRuleElement, WidgetDefinition definition)
           
 WidgetValidator Mod10ValidatorBuilder.build(Element validationRuleElement, WidgetDefinition definition)
           
 WidgetValidator LengthValidatorBuilder.build(Element validationRuleElement, WidgetDefinition definition)
           
 WidgetValidator JavaScriptValidatorBuilder.build(Element element, WidgetDefinition definition)
           
 WidgetValidator EmailValidatorBuilder.build(Element validationRuleElement, WidgetDefinition definition)
           
 WidgetValidator AssertValidatorBuilder.build(Element validationRuleElement, WidgetDefinition definition)
           
 



Copyright ⌐ 1999-2004 The Apache Software Foundation. All Rights Reserved.