blob: 2b4322a9fc02ae692e70306e4a31a837fdd59baf [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);
}