org.pf.bif.callback
Interface IObjectProcessor

All Known Implementing Classes:
AAssociationProcessor, AFileProcessor

public interface IObjectProcessor

Specifies a simple interface that allows loops or recursive executions to send each object to an implementor of this interface. Additionally it can control whether or not execution must be terminated.

Version:
1.0
Author:
M.Duchrow

Method Summary
 boolean processObject(java.lang.Object object)
          Process the given object and return true if processing should be continued, otherwise false.
 

Method Detail

processObject

boolean processObject(java.lang.Object object)
Process the given object and return true if processing should be continued, otherwise false.

Parameters:
object - The object to be processed (null must be handled)
Returns:
true to continue the processing, false to stop the processing