Class<?> clazz = loader.loadClass(fqn);
Field f = clazz.getField("DESCRIPTOR");
TemplateDescriptor descriptor = (TemplateDescriptor)f.get(null);
templates.add(descriptor);
juzu.impl.common.Path.Absolute path = (juzu.impl.common.Path.Absolute)juzu.impl.common.Path.parse(descriptor.getPath());
Path qualifier;
if (pkg.isPrefix(path.getName())) {
juzu.impl.common.Path.Relative relativePath = juzu.impl.common.Path.relative(path.getName().subName(pkg.size()), path.getExt());
qualifier = new PathLiteral(relativePath.getCanonical());
} else {
qualifier = new PathLiteral(path.getCanonical());