001 /* 002 Renaud Pawlak, pawlak@cnam.fr, CEDRIC Laboratory, Paris, France. 003 Lionel Seinturier, Lionel.Seinturier@lip6.fr, LIP6, Paris, France. 004 005 JAC-Core is free software. You can redistribute it and/or modify it 006 under the terms of the GNU Library General Public License as 007 published by the Free Software Foundation. 008 009 JAC-Core is distributed in the hope that it will be useful, but 010 WITHOUT ANY WARRANTY; without even the implied warranty of 011 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. 012 013 This work uses the Javassist system - Copyright (c) 1999-2000 014 Shigeru Chiba, University of Tsukuba, Japan. All Rights Reserved. */ 015 016 017 package org.objectweb.jac.core.utils; 018 019 import java.util.Hashtable; 020 021 public class JacHashtable extends Hashtable { 022 023 public JacHashtable() { 024 super(); 025 } 026 027 public JacHashtable(Object obj) { 028 super(); 029 } 030 031 }