D:\Hany\HalalFarms\HalalCentersHaulersJavaProject\HalalCentersHauler\src\java\utils\SystemUtilHashtable.java
 1 /*
 2  * To change this template, choose Tools | Templates
 3  * and open the template in the editor.
 4  */
 5 
 6 package utils;
 7 
 8 import java.util.Hashtable;
 9 import java.util.Enumeration;
10 
11 /**
12  *
13  * @author sameldin
14  */
15 public class SystemUtilHashtable
16 {
17     Hashtable systemUtilHashtable = null;
18 
19 
20     public SystemUtilHashtable()
21     {
22 
23     }
24     public Hashtable getSystemUtilHashtable()
25     {
26         
27         return(systemUtilHashtable);
28 
29     }
30 }
31 
32