01: /* Generated by Together */
02:
03: package com.rimfaxe.xml.xmlreader.xpath;
04:
05: /** an expression that returns a boolean value.
06:
07: <blockquote><small> Copyright (C) 2002 Hewlett-Packard Company.
08: This file is part of Sparta, an XML Parser, DOM, and XPath library.
09: This library is free software; you can redistribute it and/or
10: modify it under the terms of the <a href="doc-files/LGPL.txt">GNU
11: Lesser General Public License</a> as published by the Free Software
12: Foundation; either version 2.1 of the License, or (at your option)
13: any later version. This library is distributed in the hope that it
14: will be useful, but WITHOUT ANY WARRANTY; without even the implied
15: warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
16: PURPOSE. </small></blockquote>
17: @version $Date: 2002/12/13 18:08:33 $ $Revision: 1.2 $
18: @author Eamonn O'Brien-Strain
19: */
20: public abstract class BooleanExpr {
21: public abstract void accept(BooleanExprVisitor visitor)
22: throws XPathException;
23:
24: }
25:
26: // $Log: BooleanExpr.java,v $
27: // Revision 1.2 2002/12/13 18:08:33 eobrain
28: // Factor Visitor out into separate visitors for node tests and predicates.
29: //
30: // Revision 1.1.1.1 2002/08/19 05:04:05 eobrain
31: // import from HP Labs internal CVS
32: //
33: // Revision 1.3 2002/08/19 00:41:46 eob
34: // Tweak javadoc comment -- add period (full stop) so that Javadoc knows
35: // where is end of summary.
36: //
37: // Revision 1.2 2002/08/18 23:38:30 eob
38: // Add copyright and other formatting and commenting in preparation for
39: // release to SourceForge.
40: //
41: // Revision 1.1 2002/02/01 01:17:38 eob
42: // initial
|