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.

Version:
1.0
Author:
M.Duchrow

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