1 16 package org.apache.commons.jxpath.ri.model.dynamic; 17 18 import org.apache.commons.jxpath.ri.QName; 19 import org.apache.commons.jxpath.ri.model.beans.BeanAttributeIterator; 20 import org.apache.commons.jxpath.ri.model.beans.PropertyOwnerPointer; 21 22 30 public class DynamicAttributeIterator extends BeanAttributeIterator { 31 32 public DynamicAttributeIterator(PropertyOwnerPointer parent, QName name) { 33 super(parent, name); 34 } 35 36 protected void prepareForIndividualProperty(String name) { 37 ((DynamicPropertyPointer) getPropertyPointer()).setPropertyName(name); 38 super.prepareForIndividualProperty(name); 39 } 40 } 41 | Popular Tags |