com.publicobject.misc.xml.PushProcessor Maven / Gradle / Ivy
package com.publicobject.misc.xml;
/**
* Push a new business element onto the working stack.
*
* This is designed to set a context that deeper processors
* can attach values to.
*
* @author jessewilson
*/
public interface PushProcessor {
public E evaluate();
}