List of usage examples for java.util HashMap subclass-usage
From source file org.theospi.portfolio.presentation.model.impl.PresentationAuthzMap.java
public class PresentationAuthzMap extends HashMap { protected final transient Log logger = LogFactory.getLog(getClass()); private Agent currentAgent; private Presentation presentation; private boolean owner = false;
From source file com.bristle.javalib.net.http.MultiPartFormDataParamMap.java
/******************************************************************************
* This class makes the form parameters from an HTML form with
* enctype='multipart/form-data'
* available as a simple map, like the map returned by
* {@link HttpServletRequest#getParameterMap()}
* for other HTML forms. It can also be used with regular HTML forms, but it
From source file org.scilla.Config.java
/**
* The scilla configuration class.
*
* @version $Revision: 1.17 $
* @author R.W. van 't Veer
*/
From source file org.apache.xmlgraphics.ps.PSDictionary.java
/** * This class is used to encapsulate postscript dictionary objects. */ public class PSDictionary extends HashMap<String, Object> { private static final long serialVersionUID = 815367222496219197L;
From source file DualKeyHashMap.java
public class DualKeyHashMap<XKEY, YKEY, VALUE> extends HashMap<DualKeyMap.DualKey<XKEY, YKEY>, VALUE> implements DualKeyMap<XKEY, YKEY, VALUE> { static class SimpleDualKey<XKEY, YKEY> implements DualKey<XKEY, YKEY> { protected XKEY xKey; protected YKEY yKey;
From source file com.xavax.json.JSON.java
/** * JSON represents a JSON object as nested hashmaps. */ @SuppressWarnings({ "PMD.GodClass", "PMD.TooManyMethods" }) public final class JSON extends HashMap<String, Object> {
From source file org.pepstock.jem.node.tasks.jndi.AbsoluteHashMap.java
/**
* With this HashMap you can share the data of map across hierarchy of Classloaders.
*
* @author Andrea "Stock" Stocchero
* @version 1.0
*
From source file org.sonar.plugins.squid.bridges.ResourceIndex.java
public final class ResourceIndex extends HashMap<SourceCode, Resource> { public ResourceIndex loadSquidResources(Squid squid, SensorContext context, Project project) { loadSquidProject(squid, project); loadSquidPackages(squid, context); loadSquidFiles(squid, context);
From source file org.opoo.press.impl.ConfigImpl.java
/** * @author Alex Lin * @since 1.2 */ public class ConfigImpl extends HashMap<String, Object> implements Config { private static final long serialVersionUID = 2347499217663917623L;
From source file com.bstek.dorado.data.variant.MetaData.java
/**
* ?
*
* @author Benny Bao (mailto:benny.bao@bstek.com)
* @since Apirl 20, 2007
*/