1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16 package org.apache.commons.jxpath.ri.model.dynamic;
17
18 import org.apache.commons.jxpath.ri.model.NodePointer;
19 import org.apache.commons.jxpath.ri.model.beans.PropertyIterator;
20 import org.apache.commons.jxpath.ri.model.beans.PropertyOwnerPointer;
21
22 /***
23 * @deprecated - no longer needed, as it is identical to PropertyIterator.
24 *
25 * @author <a href="mailto:dmitri@apache.org">Dmitri Plotnikov</a>
26 * @version $Id: DynamicPropertyIterator.java,v 1.5 2004/02/29 14:17:44 scolebourne Exp $
27 */
28 public class DynamicPropertyIterator extends PropertyIterator {
29
30 public DynamicPropertyIterator(
31 PropertyOwnerPointer pointer,
32 String name,
33 boolean reverse,
34 NodePointer startWith)
35 {
36 super(pointer, name, reverse, startWith);
37 }
38 }