this.location = location;
Iterator itr = this.findNextByType(DefineHandler.class);
if (itr.hasNext()) {
handlers = new HashMap();
DefineHandler d = null;
while (itr.hasNext()) {
d = (DefineHandler) itr.next();
this.handlers.put(d.getName(), d);
}
} else {
handlers = null;
}
}