blob: 87b9df3e98ebb1c02d760215c935e2c33c9770cc [file] [log] [blame]
package org.apache.xpath;
/**
* Classes that implement this interface own an expression, which
* can be rewritten.
*/
public interface ExpressionOwner
{
/**
* Get the raw Expression object that this class wraps.
*
* @return the raw Expression object, which should not normally be null.
*/
public Expression getExpression();
/**
* Set the raw expression object for this object.
*
* @param exp the raw Expression object, which should not normally be null.
*/
public void setExpression(Expression exp);
}