1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package net.sourceforge.pmd.lang.ast.xpath; 5 6 import java.util.Iterator; 7 8 /** 9 * This interface can be used by an AST node to indicate it can directly provide 10 * access to it's attributes, versus having them be determined via introspection. 11 */ 12 public interface AttributeNode { 13 Iterator<Attribute> getAttributeIterator(); 14 }