01: /*
02: * Copyright 2006 Day Management AG, Switzerland. All rights reserved.
03: */
04: package javax.jcr;
05:
06: /**
07: * Allows easy iteration through a list of <code>Property</code>s
08: * with <code>nextProperty</code> as well as a <code>skip</code> method.
09: */
10: public interface PropertyIterator extends RangeIterator {
11:
12: /**
13: * Returns the next <code>Property</code> in the iteration.
14: *
15: * @return the next <code>Property</code> in the iteration.
16: * @throws java.util.NoSuchElementException if iteration has no more <code>Property</code>s.
17: */
18: public Property nextProperty();
19: }
|