1 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 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 } 39 | Popular Tags |