Result result = getInitializedResult();
ComponentNameConstructor compName = getVerifierContext().getComponentNameConstructor();
String archiveUri = getAbstractArchiveUri(descriptor);
boolean allPassed = true;
FileArchive arch = null;
Enumeration entries= null;
ClosureCompiler closureCompiler=getVerifierContext().getClosureCompiler();
try {
String uri = getAbstractArchiveUri(descriptor);
arch = new FileArchive();
arch.open(uri);
entries = arch.entries();
arch.close();
} catch(Exception e) {
e.printStackTrace();
result.failed(smh.getLocalString(getClass().getName() + ".exception",
"Error: [ {0} ] exception while loading the archive [ {1} ].",
new Object[] {e, descriptor.getName()}));