return att.get(key);
}
@Override
public String toString() {
Formatter f = new Formatter();
f.format("CacheFile{ shortName='%s' lastModified=%d length=%d isDirectory=%s%n", shortName, lastModified, length, isDirectory);
if (att != null ) {
f.format(" attributes:%n");
for (String key : att.keySet()) {
f.format(" %s = %s %n", key, att.get(key));
}
}
return f.toString();
}