Searched defs:scope (Results 26 - 50 of 108) sorted by relevance

12345

/openjdk7/jdk/src/share/classes/javax/script/
H A DSimpleScriptContext.java71 * This is the engine scope bindings.
79 * This is the global scope bindings.
80 * By default, a null value (which means no global scope) is used. Accessor
95 * Sets a <code>Bindings</code> of attributes for the given scope. If the value
96 * of scope is <code>ENGINE_SCOPE</code> the given <code>Bindings</code> replaces the
98 * of scope is <code>GLOBAL_SCOPE</code> the given <code>Bindings</code> replaces the
102 * @param scope The value of the scope in which the attributes are set.
104 * @throws IllegalArgumentException if scope is invalid.
105 * @throws NullPointerException if the value of scope i
108 setBindings(Bindings bindings, int scope) argument
162 getAttribute(String name, int scope) argument
191 removeAttribute(String name, int scope) argument
223 setAttribute(String name, Object value, int scope) argument
300 getBindings(int scope) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/ldap/
H A DEventSupport.java151 synchronized void addNamingListener(String nm, int scope, argument
156 NotifierArgs args = new NotifierArgs(nm, scope, l);
H A DLdapURL.java44 * [dn ["?" [attributes] ["?" [scope]
48 * scope = "base" / "one" / "sub"
73 private String scope = null; field in class:LdapURL
92 parsePathAndQuery(); // DN, attributes, scope, filter, extensions
127 * Returns the LDAP URL's scope.
130 return scope;
230 scope = query.substring(qmark2 + 1);
233 scope = query.substring(qmark2 + 1, qmark3);
265 System.out.println(" scope: " + url.getScope());
H A DNotifierArgs.java55 NotifierArgs(String name, int scope, NamingListener l) { argument
58 // if scope is not default, create search ctl and set it
59 if (scope != EventContext.ONELEVEL_SCOPE) {
61 controls.setSearchScope(scope);
/openjdk7/hotspot/src/share/vm/runtime/
H A Dvframe_hp.hpp64 ScopeDesc* scope() const { return _scope; } function in class:compiledVFrame
78 compiledVFrame(const frame* fr, const RegisterMap* reg_map, JavaThread* thread, ScopeDesc* scope);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/impl/
H A DRuntimeTypeInfoSetImpl.java90 public RuntimeElementInfoImpl getElementInfo(Class scope,QName name) { argument
91 return (RuntimeElementInfoImpl)super.getElementInfo(scope,name);
94 public Map<QName,RuntimeElementInfoImpl> getElementMappings(Class scope) { argument
95 return (Map<QName,RuntimeElementInfoImpl>)super.getElementMappings(scope);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/runtime/
H A DRuntimeTypeInfoSet.java52 RuntimeElementInfo getElementInfo( Class scope, QName name ); argument
53 Map<QName,? extends RuntimeElementInfo> getElementMappings( Class scope );
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/rngom/parse/compact/
H A DCompactParseable.java90 public ParsedPattern parseExternal(String uri, SchemaBuilder sb, Scope scope, String inheritedNs) argument
94 return new CompactSyntax(this, makeReader(tem), uri, sb, eh, inheritedNs).parse(scope);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/jaxws/
H A DBuilderHandlerMessageScope.java48 private final Scope scope; field in class:BuilderHandlerMessageScope
62 , Scope scope
69 this.scope = scope;
92 result = result && ((this.scope == null) ? ((that.scope == null) ? true : false) :this.scope.equals(that.scope));
94 if (this.scope != Scope.FaultMessageScope) {
108 hashCode = 31 * hashCode + (scope
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DEndpointMessageContextImpl.java77 return null; // no such application-scope property
104 throw new IllegalArgumentException("Cannot overwrite property in HANDLER scope");
123 throw new IllegalArgumentException("Cannot remove property in HANDLER scope");
140 public void setScope(String name, MessageContext.Scope scope) { argument
142 "All the properties in this context are in APPLICATION scope. Cannot do setScope().");
147 "All the properties in this context are in APPLICATION scope. Cannot do getScope().");
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/bind/
H A DJAXBElement.java41 * <li><b><tt>scope</tt></b> of element declaration</li>
45 * <p>The <tt>declaredType</tt> and <tt>scope</tt> property are the
75 * - local element declaration has a scope set to the Java class
79 final protected Class scope; field in class:JAXBElement
89 * Designates global scope for an xml element.
98 * @param scope
99 * Java binding of scope of xml element declaration.
108 Class scope,
113 if(scope==null) scope
106 JAXBElement(QName name, Class<T> declaredType, Class scope, T value) argument
[all...]
/openjdk7/jdk/test/javax/script/
H A DMyContext.java57 public void setBindings(Bindings bindings, int scope) { argument
59 switch (scope) {
62 throw new NullPointerException("App scope cannot be null.");
69 throw new NullPointerException("Engine scope cannot be null.");
77 throw new IllegalArgumentException("Invalid scope value.");
93 public Object getAttribute(String name, int scope) { argument
95 switch (scope) {
109 throw new IllegalArgumentException("Illegal scope value.");
113 public Object removeAttribute(String name, int scope) { argument
115 switch (scope) {
140 setAttribute(String name, Object value, int scope) argument
198 getBindings(int scope) argument
[all...]
/openjdk7/jdk/src/share/classes/java/security/
H A DIdentity.java39 * specified to have a particular scope, then the name and public
40 * key of the Identity are unique within that scope.
87 * The scope of the identity.
91 IdentityScope scope; field in class:Identity
108 * Constructs an identity with the specified name and scope.
111 * @param scope the scope of the identity.
114 * with the same name in the scope.
116 public Identity(String name, IdentityScope scope) throws argument
119 if (scope !
[all...]
/openjdk7/jdk/src/share/classes/javax/naming/directory/
H A DSearchControls.java31 * factors that determine scope of search and what gets returned
98 * Contains the scope with which to apply the search. One of
164 * @param scope The search scope. One of:
177 public SearchControls(int scope, argument
183 searchScope = scope;
192 * Retrieves the search scope of these SearchControls.
196 * @return The search scope of this SearchControls.
261 * Sets the search scope to one of:
263 * @param scope Th
266 setSearchScope(int scope) argument
[all...]
/openjdk7/jdk/src/share/classes/com/sun/jndi/toolkit/dir/
H A DContextEnumerator.java46 private int scope = SearchControls.SUBTREE_SCOPE; field in class:ContextEnumerator
53 public ContextEnumerator(Context context, int scope) argument
56 this(context, scope, "", scope != SearchControls.ONELEVEL_SCOPE);
59 protected ContextEnumerator(Context context, int scope, String contextName, argument
69 if (scope != SearchControls.OBJECT_SCOPE) {
72 this.scope = scope;
86 protected ContextEnumerator newEnumerator(Context ctx, int scope, argument
88 return new ContextEnumerator(ctx, scope, contextNam
[all...]
/openjdk7/jdk/src/macosx/classes/apple/applescript/
H A DAppleScriptEngine.java221 * @param scope contextual scope to return.
222 * @return the bindings in the engine for the scope indicated by the parameter
224 public Bindings getBindings(final int scope) { argument
225 return context.getBindings(scope);
230 * Sets the bindings for the indicated scope
232 * @param scope the scope that the passed bindings should be assigned to
234 public void setBindings(final Bindings bindings, final int scope) { argument
235 context.setBindings(bindings, scope);
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/model/core/
H A DTypeInfoSet.java108 * @param scope
110 * Otherwise return a local element in the given scope if available,
113 ElementInfo<T,C> getElementInfo( C scope, QName name ); argument
121 * Returns all {@link ElementInfo}s in the given scope.
123 * @param scope
126 Map<QName,? extends ElementInfo<T,C>> getElementMappings( C scope );
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DMessageContextImpl.java67 public void setScope(String name, Scope scope) { argument
70 if(scope == Scope.APPLICATION) {
H A DMessageUpdatableContext.java89 public void setScope(String name, Scope scope) { argument
90 ctxt.setScope(name, scope);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/subject/
H A DWsdlBindingSubject.java54 * Identifies the scope to which this subject belongs. See WS-PolicyAttachment
57 * The SERVICE scope is not actually used and only listed here for completeness
74 WsdlBindingSubject(final QName name, final WsdlNameScope scope, final WsdlBindingSubject parent) { argument
75 this(name, WsdlMessageType.NO_MESSAGE, scope, parent);
78 WsdlBindingSubject(final QName name, final WsdlMessageType messageType, final WsdlNameScope scope, final WsdlBindingSubject parent) { argument
81 this.nameScope = scope;
/openjdk7/langtools/src/share/classes/com/sun/source/util/
H A DTrees.java175 * Checks whether a given type is accessible in a given scope.
176 * @param scope the scope to be checked
180 public abstract boolean isAccessible(Scope scope, TypeElement type); argument
184 * type in a given scope.
185 * @param scope the scope to be checked
190 public abstract boolean isAccessible(Scope scope, Element member, DeclaredType type); argument
/openjdk7/jdk/src/share/classes/sun/reflect/generics/factory/
H A DCoreReflectionFactory.java39 import sun.reflect.generics.scope.Scope;
49 private Scope scope; field in class:CoreReflectionFactory
53 scope = s;
58 private Scope getScope(){ return scope;}
73 * <tt>CoreReflectionFactory</tt> for the declaration and scope
81 * scope <tt> s</tt>.
84 * @param s the scope in which the factory will allocate and search for
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/handler/
H A DMessageContext.java177 * Property scope. Properties scoped as <code>APPLICATION</code> are
186 * Sets the scope of a property.
190 * @param scope Desired scope of the property
194 public void setScope(String name, Scope scope); argument
197 * Gets the scope of a property.
/openjdk7/jaxp/src/com/sun/org/apache/xerces/internal/impl/xs/
H A DXSAttributeDecl.java62 // scope
64 // enclosing complex type, when the scope is local
75 XSSimpleType simpleType, short constraintType, short scope,
82 fScope = scope;
133 * declarations within attribute group definitions: their scope will be
143 * complex type definition identified by the <code>scope</code>
74 setValues(String name, String targetNamespace, XSSimpleType simpleType, short constraintType, short scope, ValidatedInfo valInfo, XSComplexTypeDecl enclosingCT, XSObjectList annotations) argument
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DJSAdapter.java64 * (to set, get prototype), __parent__ (to set, get parent scope). We
77 // initializer to setup JSAdapter prototype in the given scope
78 public static void init(Context cx, Scriptable scope, boolean sealed) argument
80 JSAdapter obj = new JSAdapter(cx.newObject(scope));
81 obj.setParentScope(scope);
82 obj.setPrototype(getFunctionPrototype(scope));
84 ScriptableObject.defineProperty(scope, "JSAdapter", obj,
249 public Object call(Context cx, Scriptable scope, Scriptable thisObj, argument
253 return construct(cx, scope, args);
257 return ((Function)tmp).call(cx, scope, tm
264 construct(Context cx, Scriptable scope, Object[] args) argument
307 getFunctionPrototype(Scriptable scope) argument
[all...]

Completed in 191 milliseconds

12345