org.crosswire.jsword.index.query
Class AbstractBinaryQuery
java.lang.Object
org.crosswire.jsword.index.query.AbstractBinaryQuery
- All Implemented Interfaces:
- Query
- Direct Known Subclasses:
- AndNotQuery, AndQuery, BlurQuery, OrQuery
public abstract class AbstractBinaryQuery
- extends Object
- implements Query
A binary query has a left query and right query.
- Author:
- DM Smith [dmsmith555 at yahoo dot com]
- See Also:
for license details.
The copyright to this program is held by it's authors.
Methods inherited from class java.lang.Object |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Methods inherited from interface org.crosswire.jsword.index.query.Query |
find |
leftQuery
private Query leftQuery
rightQuery
private Query rightQuery
AbstractBinaryQuery
public AbstractBinaryQuery(Query theLeftQuery,
Query theRightQuery)
- Create a query consisting of two queries.
- Parameters:
theLeftQuery
- theRightQuery
-
getLeftQuery
public Query getLeftQuery()
- Returns:
- Returns the leftQuery.
getRightQuery
public Query getRightQuery()
- Returns:
- Returns the rightQuery.