org.pfsw.odem
Interface INamespacesVisitor

All Known Subinterfaces:
IExplorableElementVisitor

public interface INamespacesVisitor

This interface defines one part of the "Visitor Pattern". It specifies a callback method that gets invoked while iterating through objects that contain INamespace objects. Iteration immedately stops whenever visitNamespace(INamespace) returns false.


Method Summary
 boolean visitNamespace(INamespace namespace)
          Will be called for each INamespace object.
 

Method Detail

visitNamespace

boolean visitNamespace(INamespace namespace)
Will be called for each INamespace object.

Parameters:
namespace - The namespace that gets visited
Returns:
true if processing should be continued, otherwise false