KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > hammurapi > inspectors > metrics > ArchitecturalLayerMappingTable


1 /*
2  * Created on Jul 12, 2004
3  *
4  * TODO To change the template for this generated file go to
5  * Window - Preferences - Java - Code Style - Code Templates
6  */

7 package org.hammurapi.inspectors.metrics;
8
9 import java.util.Hashtable JavaDoc;
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 JavaDoc {
18
19     public void put(String JavaDoc key, ArchitecturalLayerMapping value){
20         super.put( key, value);
21     }
22     public ArchitecturalLayerMapping get (String JavaDoc key){
23         return (ArchitecturalLayerMapping)super.get( key);
24     }
25 }
26
Popular Tags