blob: 8b762350e469b33cfd26b0171e493ef8b77a556c [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2011 Jesper Steen Moller and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* Jesper Steen Moller - initial API and implementation
* Jesper Steen Moller - bug 343804 - Updated API information
*******************************************************************************/
package org.eclipse.wst.xml.xpath.core.util;
import javax.xml.namespace.NamespaceContext;
import javax.xml.xpath.XPathExpressionException;
import org.w3c.dom.Node;
import org.w3c.dom.NodeList;
/**
* @since 1.2
* @noimplement This interface is not intended to be implemented by clients.
*/
public interface SimpleXPathEngine {
void parse(String expression) throws XPathExpressionException;
boolean isValid();
NodeList execute(Node contextNode) throws XPathExpressionException;
void setNamespaceContext(NamespaceContext namespaceContext);
}