01: /** 02: * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 03: */package net.sourceforge.pmd.symboltable; 04: 05: import net.sourceforge.pmd.ast.SimpleNode; 06: 07: public interface NameDeclaration { 08: SimpleNode getNode(); 09: 10: String getImage(); 11: 12: Scope getScope(); 13: }