List of usage examples for java.util HashMap subclass-usage
From source file ca.phon.app.modules.EntryPointArgs.java
/**
* Argument information for plug-in entry points.
*
* This class includes helper methods for parsing
* command line arguments and accessing commonly needed
* argument values such as project, corpus, and session.
From source file org.vulpe.commons.util.VulpeHashMap.java
/**
*
* @author <a href="mailto:felipe@vulpe.org">Geraldo Felipe</a>
* @version 1.0
* @since 1.0
*/
From source file org.apache.wiki.preferences.Preferences.java
/** * Represents an object which is used to store user preferences. * */ public class Preferences extends HashMap<String, String> { private static final long serialVersionUID = 1L;
From source file com.ecyrd.jspwiki.preferences.Preferences.java
/** * Represents an object which is used to store user preferences. * */ public class Preferences extends HashMap<String, String> { private static final long serialVersionUID = 1L;
From source file com.fortify.processrunner.context.Context.java
/**
* <p>This class defines the process runner context. It is basically a
* {@link HashMap} that can contain arbitrary String keys together with
* arbitrary Object values.</p>
*
* <p>To allow type-safe access to this {@link Map}, callers can call the
From source file nl.tue.gale.ae.GaleConfig.java
public class GaleConfig extends HashMap<String, Object> implements ApplicationContextAware { private static final long serialVersionUID = -7575701106819625712L; private File file = null; private ServletContext sc = null; private ApplicationContext ac = null;
From source file org.browsermob.proxy.jetty.http.HashUserRealm.java
/** HashMapped User Realm.
*
* An implementation of UserRealm that stores users and roles in-memory in
* HashMaps.
* <P>
* Typically these maps are populated by calling the load() method or passing
From source file net.lightbody.bmp.proxy.jetty.http.HashUserRealm.java
/** HashMapped User Realm.
*
* An implementation of UserRealm that stores users and roles in-memory in
* HashMaps.
* <P>
* Typically these maps are populated by calling the load() method or passing
From source file com.admc.jcreole.marker.MarkerMap.java
/** * @author Blaine Simpson (blaine dot simpson at admc dot com) * @since 1.1.1 */ public class MarkerMap extends HashMap<Integer, BufferMarker> { private static Log log = LogFactory.getLog(MarkerMap.class);
From source file org.browsermob.proxy.jetty.http.PathMap.java
/** URI path map to Object.
* This mapping implements the path specification recommended
* in the 2.2 Servlet API.
*
* Path specifications can be of the following forms:<PRE>
* /foo/bar - an exact path specification.