Package org.smooks.api.delivery.ordering
Interface Producer
-
- All Superinterfaces:
ContentHandler,Visitor
- All Known Implementing Classes:
DomModelCreator,NestedSmooksVisitor,StaticProxyInterceptor,TerminateVisitor
public interface Producer extends Visitor
Object Producer interface. A producer is aVisitorthat "produces" a named object that is added to theExecutionContextfor use by aConsumerof some sort. Note that aVisitordoes not qualify as a producer just because it "produces" something. It is only a producer if it produces something that is added to theExecutionContextfor use by aConsumer. TheProducer/Consumerinterfaces allows us to order the execution of multipleVisitorinstances, targetted at the same element selector, based on what theVisitorproduces and/or consumes.- Since:
- 1.2
- Author:
- tom.fennelly@jboss.com
- See Also:
Consumer
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Set<?>getProducts()Get the set of products produced by this producer instance.
-
-
-
Method Detail
-
getProducts
Set<?> getProducts()
Get the set of products produced by this producer instance.- Returns:
- The set of products produced by this producer instance.
-
-