Uses of Interface
ca.grimoire.formtree.FormElementReceiver

Packages that use FormElementReceiver
ca.grimoire.formtree   
ca.grimoire.formtree.receiver   
ca.grimoire.formtree.receiver.constructor   
 

Uses of FormElementReceiver in ca.grimoire.formtree
 

Subinterfaces of FormElementReceiver in ca.grimoire.formtree
 interface FormReceiver<T>
          Callbacks for handling the reconstituted form data.
 

Methods in ca.grimoire.formtree that return FormElementReceiver
 FormElementReceiver FormElementReceiver.index(int index)
          Adds an index to the decoded form.
 FormElementReceiver FormElementReceiver.key(java.lang.String field)
          Adds a key to the decoded form.
 

Uses of FormElementReceiver in ca.grimoire.formtree.receiver
 

Classes in ca.grimoire.formtree.receiver that implement FormElementReceiver
 class IgnoreReceiver
          A form element receiver that acts as a black hole, ignoring all values passed into it.
 

Methods in ca.grimoire.formtree.receiver that return FormElementReceiver
 FormElementReceiver IgnoreReceiver.index(int index)
          Ignores an index element.
 FormElementReceiver IgnoreReceiver.key(java.lang.String field)
          Ignores a key element.
 

Uses of FormElementReceiver in ca.grimoire.formtree.receiver.constructor
 

Classes in ca.grimoire.formtree.receiver.constructor that implement FormElementReceiver
 class ArrayReceiver<T>
          Receives form elements into an array of some constructible class.
 class CollectionReceiver<E,T>
          Supporting behaviour allowing for form receivers that produce collections.
 class ConstructorReceiver<T>
          A FormReceiver which populates arbitrary object graphs, rooted at an instance of a specific class.
 class ListReceiver<T>
          Receives form elements into an List of some constructible class.
 class SetReceiver<T>
          Receives constructible elements into a Set.
 class StringConstructorReceiver<T>
          A form receiver that uses constructors with the signature (String).
 

Methods in ca.grimoire.formtree.receiver.constructor that return FormElementReceiver
 FormElementReceiver StringConstructorReceiver.index(int index)
           
 FormElementReceiver ConstructorReceiver.index(int index)
          Ignores index access entirely.
 FormElementReceiver CollectionReceiver.index(int index)
          Returns an appropriate FormElementReceiver for the index'th element of the collection, creating it if necessary.
 FormElementReceiver StringConstructorReceiver.key(java.lang.String field)
           
 FormElementReceiver ConstructorReceiver.key(java.lang.String field)
          Returns a FormElementReceiver appropriate for the named field.
 FormElementReceiver CollectionReceiver.key(java.lang.String field)
          Ignores keys - the collection itself has no key fields.
 



Copyright © 2011 Grimoire Alchymia. All Rights Reserved.