01: /*
02: * Created on 17-Jul-2005
03: *
04: */
05: package com.jofti.core;
06:
07: /**
08: *
09: *
10: * A marker interface for a query predicate.<p>
11: *
12: * @author xenephon (xenephon@jofti.com)
13: * @version 1.0
14: */
15: public interface IPredicate {
16:
17: public int getType();
18:
19: public String getField();
20:
21: public int getOperator();
22:
23: public Object getValue();
24:
25: public String getAlias();
26: }
|