FileDocCategorySizeDatePackage
LegacyHashtable.javaAPI DocAzureus 3.0.3.41399Thu Feb 09 19:43:18 GMT 2006org.gudy.azureus2.ui.common.util

LegacyHashtable

public class LegacyHashtable extends Hashtable
author
tobi

Fields Summary
Constructors Summary
public LegacyHashtable()
Creates a new instance of LegacyHashtable

    super();
  
Methods Summary
public java.lang.Objectget(java.lang.Object key)

    if (containsKey(key))
      return super.get(key);
    else
      return "";