org.openstreetmap.josm.actions.search
Class SearchCompiler.BinaryMatch

java.lang.Object
  extended by org.openstreetmap.josm.actions.search.SearchCompiler.Match
      extended by org.openstreetmap.josm.actions.search.SearchCompiler.BinaryMatch
Direct Known Subclasses:
SearchCompiler.And, SearchCompiler.Or, SearchCompiler.Xor
Enclosing class:
SearchCompiler

public abstract static class SearchCompiler.BinaryMatch
extends SearchCompiler.Match

A binary search operator which may take data parameters.


Field Summary
protected  SearchCompiler.Match lhs
           
protected  SearchCompiler.Match rhs
           
 
Constructor Summary
SearchCompiler.BinaryMatch(SearchCompiler.Match lhs, SearchCompiler.Match rhs)
           
 
Method Summary
 SearchCompiler.Match getLhs()
           
 SearchCompiler.Match getRhs()
           
 
Methods inherited from class org.openstreetmap.josm.actions.search.SearchCompiler.Match
existsMatch, forallMatch, match
 
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
 

Field Detail

lhs

protected final SearchCompiler.Match lhs

rhs

protected final SearchCompiler.Match rhs
Constructor Detail

SearchCompiler.BinaryMatch

public SearchCompiler.BinaryMatch(SearchCompiler.Match lhs,
                                  SearchCompiler.Match rhs)
Method Detail

getLhs

public SearchCompiler.Match getLhs()

getRhs

public SearchCompiler.Match getRhs()


JOSM