Searched refs:publish (Results 1 - 20 of 20) sorted by relevance

/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/
H A DEndpoint.java44 * The <code>publish</code> methods can be used to start publishing
91 * one of the {@link javax.xml.ws.Endpoint#publish(String)} and
92 * {@link javax.xml.ws.Endpoint#publish(Object)} methods.
111 * one of the {@link javax.xml.ws.Endpoint#publish(String)} and
112 * {@link javax.xml.ws.Endpoint#publish(Object)} methods.
134 * one of the {@link javax.xml.ws.Endpoint#publish(String)} and
135 * {@link javax.xml.ws.Endpoint#publish(Object)} methods.
155 * one of the {@link javax.xml.ws.Endpoint#publish(String)} and
156 * {@link javax.xml.ws.Endpoint#publish(Object)} methods.
194 * use the {@link javax.xml.ws.Endpoint#publish(Objec
212 public abstract void publish(String address); method in class:Endpoint
239 public static Endpoint publish(String address, Object implementor) { method in class:Endpoint
271 public static Endpoint publish(String address, Object implementor, WebServiceFeature ... features) { method in class:Endpoint
301 public abstract void publish(Object serverContext); method in class:Endpoint
335 public void publish(HttpContext serverContext) { method in class:Endpoint
[all...]
/openjdk7/jdk/src/share/classes/java/util/logging/
H A DConsoleHandler.java104 public void publish(LogRecord record) { method in class:ConsoleHandler
105 super.publish(record);
H A DSocketHandler.java179 * Format and publish a <tt>LogRecord</tt>.
184 public synchronized void publish(LogRecord record) { method in class:SocketHandler
188 super.publish(record);
H A DMemoryHandler.java35 * contents to a target <tt>Handler</tt>, which will typically publish
135 * @param target the Handler to which to publish output.
172 public synchronized void publish(LogRecord record) { method in class:MemoryHandler
198 target.publish(record);
H A DHandler.java82 public abstract void publish(LogRecord record); method in class:Handler
169 * For each call of <tt>publish</tt> the <tt>Handler</tt> will call
H A DStreamHandler.java174 * Format and publish a <tt>LogRecord</tt>.
190 public synchronized void publish(LogRecord record) { method in class:StreamHandler
H A DFileHandler.java566 * Format and publish a <tt>LogRecord</tt>.
571 public synchronized void publish(LogRecord record) { method in class:FileHandler
575 super.publish(record);
H A DLogger.java86 * record should be published. If that passes it will then publish
88 * publish to their parent's Handlers, recursively up the tree.
610 handler.publish(record);
/openjdk7/jdk/test/javax/swing/SwingWorker/6432565/
H A Dbug6432565.java45 publish(new String[] {"hello"});
46 publish(new StringBuilder("world"));
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/server/
H A DHttpEndpoint.java57 public abstract void publish(@NotNull String address); method in class:HttpEndpoint
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/http/server/
H A DHttpEndpoint.java45 * all the publish operations will fail way. Why is it better to defer
61 public void publish(String address) { method in class:HttpEndpoint
64 publish(httpContext);
67 public void publish(Object serverContext) { method in class:HttpEndpoint
87 * This can be called only after publish
H A DEndpointImpl.java73 * {@link WSEndpoint}, and then when {@link #publish} method
140 ((HttpEndpoint) actualEndpoint).publish(serverContext);
155 public void publish(String address) { method in class:EndpointImpl
171 ((HttpEndpoint) actualEndpoint).publish(address);
174 public void publish(Object serverContext) { method in class:EndpointImpl
180 ((HttpEndpoint) actualEndpoint).publish(serverContext);
183 public void publish(HttpContext serverContext) { method in class:EndpointImpl
186 ((HttpEndpoint) actualEndpoint).publish(serverContext);
321 "Cannot publish this endpoint. Endpoint has been already published.");
325 "Cannot publish thi
[all...]
/openjdk7/jdk/test/sun/rmi/runtime/Log/checkLogging/
H A DCheckLogging.java118 public void publish(LogRecord record) { method in class:CheckLogging.InternalStreamHandler
119 super.publish(record);
/openjdk7/jdk/test/java/util/logging/
H A DLoggerSubclass.java57 public void publish(LogRecord l) {
/openjdk7/jdk/test/javax/swing/system/6799345/
H A DTestShutdown.java179 publish(delay);
/openjdk7/jdk/src/share/classes/sun/rmi/runtime/
H A DLog.java275 * must be called in the publish and close methods.
282 public void publish(LogRecord record) { method in class:Log.InternalStreamHandler
283 super.publish(record);
/openjdk7/hotspot/src/share/vm/memory/
H A DthreadLocalAllocBuffer.cpp66 global_stats()->publish();
400 void GlobalTLABStats::publish() { function in class:GlobalTLABStats
H A DthreadLocalAllocBuffer.hpp216 void publish();
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/spi/
H A DProviderImpl.java113 endpoint.publish(address);
126 endpoint.publish(address);
/openjdk7/jdk/src/share/classes/javax/swing/
H A DSwingWorker.java181 * publish(number);
222 * {@code SwingWorker's} {@code publish} and {@code process} methods
348 * multiple invocations to the {@code publish} method
357 * publish(&quot;1&quot;);
358 * publish(&quot;2&quot;, &quot;3&quot;);
359 * publish(&quot;4&quot;, &quot;5&quot;, &quot;6&quot;);
388 * publish((Object[]) row);
408 protected final void publish(V... chunks) { method in class:SwingWorker
427 * Receives data chunks from the {@code publish} method asynchronously on the
431 * Please refer to the {@link #publish} metho
[all...]

Completed in 75 milliseconds