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 7 public interface TypedNameDeclaration { 8 9 public String getTypeImage(); 10 11 public Class<?> getType(); 12 13 }