001 /*
002 * Created on Aug 21, 2005
003 *
004 * @design kiniry 21 Aug 2005 - Refactored out of InputEntry to avoid
005 * existing recursion bug in typechecker in handling nested classes.
006 */
007
008 package javafe;
009
010 public class UnknownInputEntry extends InputEntry {
011 public UnknownInputEntry(String n) { super(n); auto=true; }
012 public String type() { return "Unknown"; }
013 public InputEntry resolve() {
014 return InputEntry.make(name);
015 }
016 }