T - the represenetation of the artifact this processor should provide.public interface Processor<T>
Processors can be nested within one other to provide complex functionality, where the result from one Processor may be used to provide input for another Processor.
| Modifier and Type | Interface and Description | 
|---|---|
static interface  | 
Processor.Visitor<T>
A visitor that will be called for each object in the Contributor set. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
void | 
process(Processor.Visitor<T> visitor)
Visit each object of type T in the set. 
 | 
void process(Processor.Visitor<T> visitor) throws ContribException
visitor - ContribException - if an exception is encountered during iteration.