Searched defs:engineScope (Results 1 - 2 of 2) sorted by relevance

/openjdk7/jdk/src/share/classes/javax/script/
H A DSimpleScriptContext.java76 protected Bindings engineScope; field in class:SimpleScriptContext
87 engineScope = new SimpleBindings();
97 * <code>engineScope</code> field. If the value
116 engineScope = bindings;
141 if (engineScope.containsKey(name)) {
167 return engineScope.get(name);
228 engineScope.put(name, value);
282 if (engineScope.containsKey(name)) {
292 * Returns the value of the <code>engineScope</code> field if specified scope is
297 * @return The value of either the <code>engineScope</cod
[all...]
/openjdk7/jdk/test/javax/script/
H A DMyContext.java44 protected Bindings engineScope; field in class:MyContext
50 engineScope = new SimpleBindings();
71 engineScope = bindings;
82 if (engineScope.containsKey(name)) {
100 return engineScope.get(name);
148 engineScope.put(name, value);
187 if (engineScope.containsKey(name)) {
200 return engineScope;

Completed in 280 milliseconds