package org.opengroupware.jope.appserver.core;

/*
 * WOElementWalker
 * 
 * Implement this interface if you want to walk over a WOElement template
 * hierarchy.
 * Call walkTemplate(context) on the root to start the walking.
 * Return false if you want to stop walking.
 */
public interface WOElementWalker {

  public boolean processTemplate
    (WOElement _cursor, WOElement _template, WOContext _ctx);
  
}
