Searched defs:implementor (Results 1 - 7 of 7) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/spi/
H A DProviderImpl.java88 public Endpoint createEndpoint(String bindingId, Object implementor) { argument
90 (bindingId != null) ? BindingID.parse(bindingId) : BindingID.parse(implementor.getClass()),
91 implementor);
109 Object implementor) {
111 BindingID.parse(implementor.getClass()),
112 implementor);
117 public Endpoint createEndpoint(String bindingId, Object implementor, WebServiceFeature... features) { argument
119 (bindingId != null) ? BindingID.parse(bindingId) : BindingID.parse(implementor.getClass()),
120 implementor, features);
123 public Endpoint createAndPublishEndpoint(String address, Object implementor, WebServiceFeatur argument
108 createAndPublishEndpoint(String address, Object implementor) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DEndpoint.java41 * and one implementor, both set at endpoint creation time.
62 * present on the implementor.
86 * Creates an endpoint with the specified implementor object. If there is
95 * @param implementor The endpoint implementor.
100 public static Endpoint create(Object implementor) { argument
101 return create(null, implementor);
105 * Creates an endpoint with the specified implementor object and web
115 * @param implementor The endpoint implementor
125 create(Object implementor, WebServiceFeature ... features) argument
146 create(String bindingId, Object implementor) argument
171 create(String bindingId, Object implementor, WebServiceFeature ... features) argument
239 publish(String address, Object implementor) argument
271 publish(String address, Object implementor, WebServiceFeature ... features) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/
H A DProvider.java212 * @param implementor A service implementation object to which
219 Object implementor);
230 * @param implementor A service implementation object to which
237 Object implementor);
462 * @param implementor A service implementation object to which
473 Object implementor, WebServiceFeature ... features) {
483 * @param implementor A service implementation object to which
493 public Endpoint createEndpoint(String bindingId, Object implementor, argument
218 createEndpoint(String bindingId, Object implementor) argument
236 createAndPublishEndpoint(String address, Object implementor) argument
472 createAndPublishEndpoint(String address, Object implementor, WebServiceFeature ... features) argument
/openjdk7/jdk/src/share/classes/com/sun/script/javascript/
H A DRhinoScriptEngine.java65 private InterfaceImplementor implementor; field in class:RhinoScriptEngine
166 implementor = new InterfaceImplementor(this) {
310 return implementor.getInterface(null, clasz);
322 return implementor.getInterface(thiz, clasz);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DEndpointImpl.java98 private @Nullable final Object implementor; field in class:EndpointImpl
126 this.implementor = impl;
142 implementor = null; // this violates the semantics, but hey, this is a backdoor.
152 return implementor;
/openjdk7/hotspot/src/share/vm/ci/
H A DciInstanceKlass.cpp533 // ciInstanceKlass::implementor
535 // Report an implementor of this interface.
538 // to results returned by instanceKlass::implementor.
541 ciInstanceKlass* ciInstanceKlass::implementor() { function in class:ciInstanceKlass
544 // Go into the VM to fetch the implementor.
547 klassOop k = get_instanceKlass()->implementor();
/openjdk7/hotspot/src/share/vm/oops/
H A DinstanceKlass.hpp83 // [EMBEDDED implementor of the interface] only exist for interface
294 // embedded implementor of this interface follows here
295 // The embedded implementor only exists if the current klass is an
296 // iterface. The possible values of the implementor fall into following
298 // NULL: no implementor.
299 // A klassOop that's not itself: one implementor.
715 // Access to the implementor of an interface.
716 klassOop implementor() const function in class:instanceKlass
733 klassOop k = implementor();

Completed in 45 milliseconds