Searched refs:implementor (Results 1 - 14 of 14) sorted by relevance

/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/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/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/hotspot/src/share/vm/ci/
H A DciInstanceKlass.hpp69 // NULL: no implementor.
70 // A ciInstanceKlass that's not itself: one implementor.
165 impl = implementor();
218 ciInstanceKlass* implementor();
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/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/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();
H A DinstanceKlassKlass.cpp504 st->print_cr(BULLET"implementor: ");
506 ik->implementor()->print_value_on(st);
670 // Verify implementor fields
671 klassOop im = ik->implementor();
673 guarantee(ik->is_interface(), "only interfaces should have implementor set");
H A DinstanceKlass.cpp572 // The embedded _implementor field can only record one implementor.
576 // NULL - no implementor
577 // implementor klassOop - one implementor
578 // self - more than one implementor
598 klassOop ik = implementor();
602 // There is already an implementor. Use itself as an indicator of
607 // The implementor also implements the transitive_interfaces
1853 // This klass is alive but the implementor link is not followed/updated.
1862 klassOop impl = implementor();
[all...]
/openjdk7/hotspot/src/share/vm/code/
H A Ddependencies.cpp1009 // Now we must check each implementor and each subclass.
1041 klassOop impl = instanceKlass::cast(context_type)->implementor();
1044 // implementor has seen. No exact info in this case.
1185 klassOop impl = ctx->implementor();
/openjdk7/jdk/src/share/classes/com/sun/tools/example/debug/tty/
H A DCommands.java291 for (ClassType implementor : interfaze.implementors()) {
292 MessageOutput.println("implementor:", implementor.name());
/openjdk7/jdk/src/share/native/sun/awt/image/cvutils/
H A DREADME105 provided by the platform implementor. These definitions are usually
/openjdk7/hotspot/src/share/vm/c1/
H A Dc1_GraphBuilder.cpp1770 // if there is only one implementor of this interface then we
1780 singleton = target->holder()->implementor();

Completed in 81 milliseconds