Searched refs:handler (Results 26 - 50 of 489) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTextPaneUI.java45 AquaFocusHandler handler; field in class:AquaTextPaneUI
49 handler = new AquaFocusHandler();
50 c.addFocusListener(handler);
51 c.addPropertyChangeListener(handler);
58 c.removeFocusListener(handler);
59 c.removePropertyChangeListener(handler);
60 handler = null;
/openjdk7/jaxp/src/com/sun/org/apache/xml/internal/dtm/ref/
H A DIncrementalSAXSource.java45 /** Register a SAX-style content handler for us to output to
47 public void setContentHandler(ContentHandler handler); argument
49 /** Register a SAX-style lexical handler for us to output to
51 public void setLexicalHandler(org.xml.sax.ext.LexicalHandler handler); argument
53 /** Register a SAX-style DTD handler for us to output to
55 public void setDTDHandler(org.xml.sax.DTDHandler handler); argument
/openjdk7/jdk/src/share/classes/java/beans/
H A DXMLDecoder.java68 private final DocumentHandler handler = new DocumentHandler(); field in class:XMLDecoder
104 * @param exceptionListener the exception handler for the stream;
119 * @param exceptionListener the exception handler for the stream, or
154 * @param el the exception handler for the parser,
155 * or {@code null} to use the default exception handler
165 this.handler.setClassLoader(cl);
166 this.handler.setOwner(this);
201 XMLDecoder.this.handler.parse(XMLDecoder.this.input);
205 this.array = this.handler.getObjects();
211 * Sets the exception handler fo
[all...]
/openjdk7/jdk/src/solaris/classes/java/lang/
H A DTerminator.java42 private static SignalHandler handler = null; field in class:Terminator
49 if (handler != null) return;
55 handler = sh;
/openjdk7/corba/src/share/classes/org/omg/CORBA/portable/
H A DInvokeHandler.java62 * @param handler The <code>ResponseHandler</code> which the servant uses
70 ResponseHandler handler)
69 _invoke(String method, InputStream input, ResponseHandler handler) argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/sax/
H A DFastInfosetReader.java139 "http://jvnet.org/fastinfoset/sax/properties/encoding-algorithm-content-handler";
147 "http://jvnet.org/fastinfoset/sax/properties/primitive-type-content-handler";
172 * Allow an application to register a lexical handler.
174 * <p>Applications may register a new or different handler in the
176 * handler immediately.</p>
178 * @param handler The lexical handler.
181 public void setLexicalHandler(LexicalHandler handler); argument
184 * Return the current lexical handler.
186 * @return The current lexical handler, o
202 setDeclHandler(DeclHandler handler) argument
223 setEncodingAlgorithmContentHandler(EncodingAlgorithmContentHandler handler) argument
244 setPrimitiveTypeContentHandler(PrimitiveTypeContentHandler handler) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/org/objectweb/asm/
H A DHandler.java63 * Information about an exception handler block.
70 * Beginning of the exception handler's scope (inclusive).
75 * End of the exception handler's scope (exclusive).
80 * Beginning of the exception handler's code.
82 Label handler; field in class:Handler
85 * Internal name of the type of exceptions handled by this handler, or
92 * handled by this handler, or 0 to catch any exceptions.
97 * Next exception handler block info.
/openjdk7/jdk/src/share/classes/sun/management/snmp/jvminstr/
H A DJvmMemManagerTableMetaImpl.java155 // Get the data handler.
157 SnmpTableHandler handler = getHandler(userData);
158 if (handler == null) {
162 if (dbg) log.debug("getNextOid", "handler is null!");
168 final SnmpOid next = handler.getNext(oid);
183 // Get the handler.
185 SnmpTableHandler handler = getHandler(userData);
187 // handler should never be null.
189 if (handler == null)
192 return handler
[all...]
/openjdk7/jdk/src/share/classes/sun/net/www/protocol/https/
H A DDelegateHttpsURLConnection.java54 sun.net.www.protocol.http.Handler handler,
57 this(url, null, handler, httpsURLConnection);
61 sun.net.www.protocol.http.Handler handler,
64 super(url, p, handler);
53 DelegateHttpsURLConnection(URL url, sun.net.www.protocol.http.Handler handler, javax.net.ssl.HttpsURLConnection httpsURLConnection) argument
60 DelegateHttpsURLConnection(URL url, Proxy p, sun.net.www.protocol.http.Handler handler, javax.net.ssl.HttpsURLConnection httpsURLConnection) argument
/openjdk7/jdk/src/share/classes/sun/nio/ch/
H A DInvoker.java34 * Defines static methods to invoke a completion handler or arbitrary task.
101 * pool and we haven't exceeded the maximum number of handler frames on
117 * Invoke handler without checking the thread identity or number of handlers
120 static <V,A> void invokeUnchecked(CompletionHandler<V,? super A> handler, argument
126 handler.completed(value, attachment);
128 handler.failed(exc, attachment);
136 * Invoke handler assuming thread identity already checked
139 CompletionHandler<V,? super A> handler,
145 Invoker.invokeUnchecked(handler, attachment, result, exc);
149 * Invokes the handler
138 invokeDirect(GroupAndInvokeCount myGroupAndInvokeCount, CompletionHandler<V,? super A> handler, A attachment, V result, Throwable exc) argument
153 invoke(AsynchronousChannel channel, CompletionHandler<V,? super A> handler, A attachment, V result, Throwable exc) argument
193 invokeIndirectly(AsynchronousChannel channel, final CompletionHandler<V,? super A> handler, final A attachment, final V result, final Throwable exc) argument
217 invokeIndirectly(final CompletionHandler<V,? super A> handler, final A attachment, final V value, final Throwable exc, Executor executor) argument
[all...]
H A DAsynchronousFileChannelImpl.java110 CompletionHandler<FileLock,? super A> handler);
126 CompletionHandler<FileLock,? super A> handler)
128 if (handler == null)
129 throw new NullPointerException("'handler' is null");
130 implLock(position, size, shared, attachment, handler);
214 CompletionHandler<Integer,? super A> handler);
225 CompletionHandler<Integer,? super A> handler)
227 if (handler == null)
228 throw new NullPointerException("'handler' is null");
229 implRead(dst, position, attachment, handler);
106 implLock(long position, long size, boolean shared, A attachment, CompletionHandler<FileLock,? super A> handler) argument
122 lock(long position, long size, boolean shared, A attachment, CompletionHandler<FileLock,? super A> handler) argument
211 implRead(ByteBuffer dst, long position, A attachment, CompletionHandler<Integer,? super A> handler) argument
222 read(ByteBuffer dst, long position, A attachment, CompletionHandler<Integer,? super A> handler) argument
232 implWrite(ByteBuffer src, long position, A attachment, CompletionHandler<Integer,? super A> handler) argument
244 write(ByteBuffer src, long position, A attachment, CompletionHandler<Integer,? super A> handler) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/handler/
H A DPortInfo.java26 package javax.xml.ws.handler;
33 * the port it is being asked to create a handler chain for.
/openjdk7/jdk/src/share/classes/java/security/
H A DAuthProvider.java62 * handler to this method, the provider uses the handler set in the
64 * If no handler was set in that method, the provider queries the
66 * for the fully qualified class name of a default handler implementation.
76 * @param handler the <code>CallbackHandler</code> used by
87 public abstract void login(Subject subject, CallbackHandler handler) argument
105 * <p> The provider uses this handler if one is not passed to the
106 * <code>login</code> method. The provider also uses this handler
108 * In either case if a handler is not set via this method,
111 * for the fully qualified class name of a default handler implementatio
125 setCallbackHandler(CallbackHandler handler) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/istack/internal/
H A DFragmentContentHandler.java45 public FragmentContentHandler(ContentHandler handler) { argument
47 setContentHandler(handler);
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/handler/soap/
H A DSOAPMessageContext.java26 package javax.xml.ws.handler.soap;
44 extends javax.xml.ws.handler.MessageContext {
87 * of the handler chain.
91 * the handler chain use this information about the SOAP actor
94 * SOAP message through the handler chain.
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/binding/
H A DHTTPBindingImpl.java34 import javax.xml.ws.handler.Handler;
35 import javax.xml.ws.handler.LogicalHandler;
62 for (Handler handler : chain) {
63 if (!(handler instanceof LogicalHandler)) {
64 throw new WebServiceException(ClientMessages.NON_LOGICAL_HANDLER_SET(handler.getClass()));
66 logicalHandlers.add((LogicalHandler) handler);
/openjdk7/jdk/src/share/sample/jmx/jmx-scandir/test/com/sun/jmx/examples/scandir/
H A DTestUtils.java77 final InvocationHandler handler =
79 if (handler instanceof MBeanServerInvocationHandler)
80 return ((MBeanServerInvocationHandler)handler).getObjectName();
97 final InvocationHandler handler =
99 if (!(handler instanceof MBeanServerInvocationHandler))
102 (MBeanServerInvocationHandler)handler;
/openjdk7/jdk/src/share/classes/sun/misc/
H A DSignal.java34 * Java code cannot register a handler for signals that are already used
40 * special C signal handler. There is no way to force the Java signal handler
41 * to run synchronously before the C signal handler returns. Instead, when the
42 * VM receives a signal, the special C signal handler creates a new thread
44 * run the registered Java signal handler. The C signal handler immediately
45 * returns. Note that because the Java signal handler runs in a newly created
47 * handler returns.
61 * SignalHandler handler
159 handle(Signal sig, SignalHandler handler) argument
[all...]
/openjdk7/jdk/src/share/classes/java/nio/channels/
H A DAsynchronousSocketChannel.java279 * {@code handler} parameter is a completion handler that is invoked when
294 * @param handler
295 * The handler for consuming the result
315 CompletionHandler<Void,? super A> handler);
323 * instead of specifying a completion handler, this method returns a {@code
351 * handler} parameter is a completion handler that is invoked when the read
353 * handler is the number of bytes read or {@code -1} if no bytes could be
376 * @param handler
313 connect(SocketAddress remote, A attachment, CompletionHandler<Void,? super A> handler) argument
388 read(ByteBuffer dst, long timeout, TimeUnit unit, A attachment, CompletionHandler<Integer,? super A> handler) argument
403 read(ByteBuffer dst, A attachment, CompletionHandler<Integer,? super A> handler) argument
494 read(ByteBuffer[] dsts, int offset, int length, long timeout, TimeUnit unit, A attachment, CompletionHandler<Long,? super A> handler) argument
541 write(ByteBuffer src, long timeout, TimeUnit unit, A attachment, CompletionHandler<Integer,? super A> handler) argument
555 write(ByteBuffer src, A attachment, CompletionHandler<Integer,? super A> handler) argument
641 write(ByteBuffer[] srcs, int offset, int length, long timeout, TimeUnit unit, A attachment, CompletionHandler<Long,? super A> handler) argument
[all...]
/openjdk7/hotspot/src/share/tools/ProjectCreator/
H A DArgsParser.java44 ArgHandler handler; field in class:ArgRule
45 ArgRule(String arg, ArgHandler handler) { argument
47 this.handler = handler;
52 handler.handle(it);
/openjdk7/jaxp/src/com/sun/org/apache/xalan/internal/xsltc/
H A DTranslet.java35 public void transform(DOM document, SerializationHandler handler) argument
40 SerializationHandler handler)
46 SerializationHandler handler, int root)
39 transform(DOM document, DTMAxisIterator iterator, SerializationHandler handler) argument
45 buildKeys(DOM document, DTMAxisIterator iterator, SerializationHandler handler, int root) argument
/openjdk7/jdk/src/share/classes/java/rmi/server/
H A DRMISocketFactory.java59 private static RMIFailureHandler handler = null; field in class:RMISocketFactory
150 * Sets the failure handler to be called by the RMI runtime if server
151 * socket creation fails. By default, if no failure handler is installed
160 * @param fh the failure handler
174 handler = fh;
178 * Returns the handler for socket creation failure set by the
180 * @return the failure handler
186 return handler;
/openjdk7/hotspot/src/os/solaris/vm/
H A Djvm_solaris.cpp41 JVM_ENTRY_NO_ENV(void*, JVM_RegisterSignal(jint sig, void* handler))
44 void* newHandler = handler == (void *)2
46 : handler;
55 his own _native_ handler for this signal; thus, in either case,
56 we do not allow JVM_RegisterSignal to change the handler. */
63 user is allowed to set his own _native_ handler for these signals and
94 // no handler for them is actually registered in JVM or via
104 // is ignored, since no handler for them is actually registered in JVM
/openjdk7/jaxp/src/org/xml/sax/
H A DXMLReader.java60 * is complete, and readers must wait for an event-handler callback
271 * Allow an application to register a DTD event handler.
273 * <p>If the application does not register a DTD handler, all DTD
276 * <p>Applications may register a new or different handler in the
278 * handler immediately.</p>
280 * @param handler The DTD handler.
283 public void setDTDHandler (DTDHandler handler); argument
287 * Return the current DTD handler.
289 * @return The current DTD handler, o
310 setContentHandler(ContentHandler handler) argument
339 setErrorHandler(ErrorHandler handler) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DXMLHandlerProcessor.java33 package com.sun.xml.internal.ws.handler;
39 import javax.xml.ws.handler.Handler;
40 import javax.xml.ws.handler.MessageContext;

Completed in 96 milliseconds

1234567891011>>