Searched defs:mItems (Results 1 - 3 of 3) sorted by relevance

/glassfish-3.1.2/tests/amx/src/org/glassfish/admin/amxtest/
H A DCapabilities.java52 private final HashMap<String, Object> mItems; field in class:Capabilities
57 mItems = new HashMap<String, Object>();
69 return Collections.unmodifiableMap(mItems);
74 return "true".equals("" + mItems.get(OFFLINE_KEY));
85 assert (!mItems.containsKey(key));
86 mItems.put(key, value);
H A DTestMain.java301 final Map<String, Object> mItems; field in class:TestMain.PropertyGetter
304 mItems = new HashMap<String, Object>();
305 mItems.putAll(props);
312 result = mItems.get(key);
/glassfish-3.1.2/common/amx-core-impl/src/main/java/org/glassfish/admin/amx/impl/util/
H A DSingletonEnforcer.java53 private static final ConcurrentMap<Class<?>, Object> mItems = new ConcurrentHashMap<Class<?>, Object>(); field in class:SingletonEnforcer
59 return theClass.cast(mItems.get(theClass));
63 if (mItems.putIfAbsent(theClass, theInstance) != null) {
69 if (!mItems.remove(theClass, theInstance)) {

Completed in 20 milliseconds