annotate servlet/src/digilib/io/MetadataMap.java @ 713:c1fa722c570e jquery

more cosmetics: added options to validate with http://www.jslint.com still doesn't fully validate because of "== null" and if without block. removed unnecessary semicolons after if and for.
author robcast
date Sun, 30 Jan 2011 17:58:56 +0100
parents 9cedd170b581
children 73e041c710d3
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
rev   line source
531
9cedd170b581 * PDF generation works now even with subdirectories
robcast
parents:
diff changeset
1 /**
9cedd170b581 * PDF generation works now even with subdirectories
robcast
parents:
diff changeset
2 *
9cedd170b581 * PDF generation works now even with subdirectories
robcast
parents:
diff changeset
3 */
9cedd170b581 * PDF generation works now even with subdirectories
robcast
parents:
diff changeset
4 package digilib.io;
9cedd170b581 * PDF generation works now even with subdirectories
robcast
parents:
diff changeset
5
9cedd170b581 * PDF generation works now even with subdirectories
robcast
parents:
diff changeset
6 import java.util.HashMap;
9cedd170b581 * PDF generation works now even with subdirectories
robcast
parents:
diff changeset
7
9cedd170b581 * PDF generation works now even with subdirectories
robcast
parents:
diff changeset
8 /** Map for metadata related to files.
9cedd170b581 * PDF generation works now even with subdirectories
robcast
parents:
diff changeset
9 * @author casties
9cedd170b581 * PDF generation works now even with subdirectories
robcast
parents:
diff changeset
10 *
9cedd170b581 * PDF generation works now even with subdirectories
robcast
parents:
diff changeset
11 */
9cedd170b581 * PDF generation works now even with subdirectories
robcast
parents:
diff changeset
12 public class MetadataMap extends HashMap<String, String> {
9cedd170b581 * PDF generation works now even with subdirectories
robcast
parents:
diff changeset
13
9cedd170b581 * PDF generation works now even with subdirectories
robcast
parents:
diff changeset
14 }