1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package net.sourceforge.pmd.lang.symboltable; 5 6 import net.sourceforge.pmd.lang.ast.Node; 7 8 /** 9 * A {@link Node} which knows about the scope within it has been declared. 10 */ 11 public interface ScopedNode extends Node { 12 13 Scope getScope(); 14 }