01: /*
02: * Copyright 2006 Day Management AG, Switzerland. All rights reserved.
03: */
04: package javax.jcr.query.qom;
05:
06: /**
07: * An operand whose value can only be determined in evaluating the query.
08: *
09: * @since JCR 2.0
10: */
11: public interface DynamicOperand extends Operand {
12: }
13:
14: // EOF
|