}
private List<TokenNameFinder> loadFinders() {
List<TokenNameFinder> finders = new ArrayList<TokenNameFinder>();
Dictionary people = new Dictionary();
people.put(new StringList("Bob Robertson".split(" ")));
finders.add(new DictionaryNameFinder(people, "person"));
Dictionary locations = new Dictionary();
locations.put(new StringList("Boston , MA".split(" ")));
finders.add(new DictionaryNameFinder(locations, "location"));
Dictionary organizations = new Dictionary();
organizations.put(new StringList("Altamira Corporation".split(" ")));
finders.add(new DictionaryNameFinder(organizations, "organization"));
return finders;
}