1 /**2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html3 */4 package net.sourceforge.pmd.symboltable;5 6 import net.sourceforge.pmd.ast.SimpleNode;7 8 public interface NameDeclaration {9 SimpleNode getNode();10 11 String getImage();12 13 Scope getScope();14 }15