Searched refs:myProps (Results 1 - 3 of 3) sorted by relevance

/openjdk7/jdk/test/java/lang/management/RuntimeMXBean/
H A DPropertiesTest.java60 Properties myProps = new Properties( System.getProperties() );
63 myProps.put("good.property.1", "good.value.1");
64 myProps.put("good.property.2", "good.value.2");
65 myProps.put("good.property.3", "good.value.3");
66 myProps.put("good.property.4", new Integer(4));
67 myProps.put(new Integer(5), "good.value.5");
68 myProps.put(new Object(), new Object());
70 System.setProperties(myProps);
/openjdk7/jdk/test/javax/naming/InitialContext/
H A DEnvClone.java50 if (env == ctx.myProps) {
58 if (env != ctx.myProps) {
/openjdk7/jdk/src/share/classes/javax/naming/
H A DInitialContext.java141 protected Hashtable<Object,Object> myProps = null; field in class:InitialContext
238 myProps = ResourceManager.getInitialEnvironment(environment);
240 if (myProps.get(Context.INITIAL_CONTEXT_FACTORY) != null) {
307 defaultInitCtx = NamingManager.getInitialContext(myProps);
339 Context ctx = NamingManager.getURLContext(scheme, myProps);
398 Context ctx = NamingManager.getURLContext(scheme, myProps);
533 myProps.put(propName, propVal);
539 myProps.remove(propName);
548 myProps = null;

Completed in 42 milliseconds