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