1 /** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package net.sourceforge.pmd.lang.java.symboltable; 5 6 public interface TypedNameDeclaration { 7 8 String getTypeImage(); 9 10 Class<?> getType(); 11 12 }