package org.opengroupware.jope.appserver.elements;

import org.opengroupware.jope.appserver.WOContext;

/*
 * WOListWalkerOperation
 * 
 * This is the operation triggered by the list walker for a given item. When
 * the method is called all the relevant bindings like index are set. This
 * _includes_ 'item'.
 * 
 * Usually an implementor will just trigger an operation on its template.
 */
public interface WOListWalkerOperation {

  public void processItem(int _idx, Object _item, WOContext _ctx);
  
}
