colus 01/11/01 07:25:29 Modified: src/java/org/apache/avalon/excalibur/xml/xpath XPathProcessor.java Log: Removed redundant 'public' keyword for jikes. Revision Changes Path 1.4 +16 -16 jakarta-avalon-excalibur/src/java/org/apache/avalon/excalibur/xml/xpath/XPathProcessor.java Index: XPathProcessor.java =================================================================== RCS file: /home/cvs/jakarta-avalon-excalibur/src/java/org/apache/avalon/excalibur/xml/xpath/XPathProcessor.java,v retrieving revision 1.3 retrieving revision 1.4 diff -u -r1.3 -r1.4 --- XPathProcessor.java 2001/10/31 21:57:09 1.3 +++ XPathProcessor.java 2001/11/01 15:25:29 1.4 @@ -15,25 +15,25 @@ * This is the interface of the XPath processor. * * @author <a href="mailto:[EMAIL PROTECTED]">Davanum Srinivas</a> - * @version CVS $Revision: 1.3 $ $Date: 2001/10/31 21:57:09 $ $Author: bloritsch $ + * @version CVS $Revision: 1.4 $ $Date: 2001/11/01 15:25:29 $ $Author: colus $ */ public interface XPathProcessor extends Component { - /** - * The role implemented by an <code>XSLTProcessor</code>. - */ - String ROLE = "org.apache.avalon.excalibur.xml.xpath.XPathProcessor"; + /** + * The role implemented by an <code>XSLTProcessor</code>. + */ + String ROLE = "org.apache.avalon.excalibur.xml.xpath.XPathProcessor"; - /** - * Use an XPath string to select a single node. XPath namespace - * prefixes are resolved from the context node, which may not - * be what you want (see the next method). - * - * @param contextNode The node to start searching from. - * @param str A valid XPath string. - * @return The first node found that matches the XPath, or null. - */ - public Node selectSingleNode(Node contextNode, String str); + /** + * Use an XPath string to select a single node. XPath namespace + * prefixes are resolved from the context node, which may not + * be what you want (see the next method). + * + * @param contextNode The node to start searching from. + * @param str A valid XPath string. + * @return The first node found that matches the XPath, or null. + */ + Node selectSingleNode(Node contextNode, String str); /** * Use an XPath string to select a nodelist. @@ -43,5 +43,5 @@ * @param str A valid XPath string. * @return A List, should never be null. */ - public NodeList selectNodeList(Node contextNode, String str); + NodeList selectNodeList(Node contextNode, String str); }
-- To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]> For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>