01: /*
02: * Copyright 2006 Day Management AG, Switzerland. All rights reserved.
03: */
04: package javax.jcr.query.qom;
05:
06: /**
07: * Evaluates to a <code>NAME</code> value equal to the local (unprefixed) name
08: * of a node.
09: * <p/>
10: * The query is invalid if {@link #getSelectorName selector} is not the name of
11: * a selector in the query.
12: *
13: * @since JCR 2.0
14: */
15: public interface NodeLocalName extends DynamicOperand {
16: /**
17: * Gets the name of the selector against which to evaluate this operand.
18: *
19: * @return the selector name; non-null
20: */
21: public String getSelectorName();
22: }
23:
24: // EOF
|