repo.or.cz
/
stereo.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
git-svn-id: https://stereo.googlecode.com/svn/trunk@441 c67ee986-0855-0410-825f-15918...
[stereo.git]
/
DACPServer
/
src
/
util
/
queryparser
/
BinOp.java
blob
3ef2d47cb852b300364144d3a8bf105ae66d4f52
1
package
util
.
queryparser
;
2
3
public abstract class
BinOp
implements
Filter
{
4
public
BinOp
(
Filter a
,
Filter b
) {
5
this
.
a
=
a
;
this
.
b
=
b
;
6
}
7
public final
Filter a
;
8
public final
Filter b
;
9
}