01: /*
02: * Created on Jul 12, 2004
03: *
04: * TODO To change the template for this generated file go to
05: * Window - Preferences - Java - Code Style - Code Templates
06: */
07: package org.hammurapi.inspectors.metrics;
08:
09: import java.util.Hashtable;
10:
11: /**
12: * @author MUCBJ0
13: *
14: * TODO To change the template for this generated type comment go to
15: * Window - Preferences - Java - Code Style - Code Templates
16: */
17: public class ArchitecturalLayerMappingTable extends Hashtable {
18:
19: public void put(String key, ArchitecturalLayerMapping value) {
20: super .put(key, value);
21: }
22:
23: public ArchitecturalLayerMapping get(String key) {
24: return (ArchitecturalLayerMapping) super.get(key);
25: }
26: }
|