/openjdk7/jdk/src/share/classes/sun/misc/ |
H A D | NativeSignalHandler.java | 28 /* A package-private class implementing a signal handler in native code. */ 32 private final long handler; field in class:NativeSignalHandler 35 return handler; 38 NativeSignalHandler(long handler) { argument 39 this.handler = handler; 43 handle0(sig.getNumber(), handler); 46 private static native void handle0(int number, long handler); argument
|
/openjdk7/jdk/src/share/classes/com/sun/tools/hat/internal/server/ |
H A D | HttpReader.java | 97 QueryHandler handler = null; 102 handler = new AllClassesQuery(true, engine != null); 103 handler.setUrlStart(""); 104 handler.setQuery(""); 107 handler = new OQLQuery(engine); 108 handler.setUrlStart(""); 109 handler.setQuery(query.substring(5)); 113 handler = new OQLHelp(); 114 handler.setUrlStart(""); 115 handler [all...] |
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/spi/http/ |
H A D | HttpContext.java | 44 protected HttpHandler handler; field in class:HttpContext 47 * JAX-WS runtime sets its handler during 50 * use this handler to process the requests. 52 * @param handler the handler to set for this context 54 public void setHandler(HttpHandler handler) { argument 55 this.handler = handler;
|
/openjdk7/jaxp/src/javax/xml/transform/sax/ |
H A D | SAXResult.java | 57 * @param handler Must be a non-null ContentHandler reference. 59 public SAXResult(ContentHandler handler) { argument 60 setHandler(handler); 66 * @param handler Must be a non-null ContentHandler reference. 68 public void setHandler(ContentHandler handler) { argument 69 this.handler = handler; 78 return handler; 85 * lexical handler is not set, an attempt should be made by the 89 * @param handler 92 setLexicalHandler(LexicalHandler handler) argument 132 private ContentHandler handler; field in class:SAXResult [all...] |
/openjdk7/jdk/src/windows/native/sun/windows/ |
H A D | awt_new.h | 33 // malloc out of memory handler. The handler attempts to correct the 43 static int handler(size_t);
|
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/handler/ |
H A D | LogicalHandler.java | 26 package javax.xml.ws.handler;
|
H A D | HandlerResolver.java | 26 package javax.xml.ws.handler; 30 * by an application to get control over the handler chain 47 * Gets the handler chain for the specified port.
|
H A D | LogicalMessageContext.java | 26 package javax.xml.ws.handler;
|
H A D | Handler.java | 26 package javax.xml.ws.handler; 29 import javax.xml.ws.handler.MessageContext; 39 * of inbound and outbound messages. Refer to the description of the handler 43 * @return An indication of whether handler processing should continue for 52 * handler processing and generate a fault. 59 * processing. Refer to the description of the handler 63 * @return An indication of whether handler fault processing should continue 72 * handler fault processing and dispatch the fault. 74 * handler fault processing and dispatch the fault. 81 * the description of the handler [all...] |
/openjdk7/jdk/test/java/net/URL/ |
H A D | SpecifyHandler.java | 28 * URLStreamHandler protocol handler. 35 URLStreamHandler handler = getFileHandler(); 36 URL url1 = new URL("file", "", -1, "/bogus/index.html", handler); 37 URL url2 = new URL(null, "file://bogus.index.html", handler);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/ |
H A D | PolicyMapKey.java | 53 private PolicyMapKeyHandler handler; field in class:PolicyMapKey 55 PolicyMapKey(final QName service, final QName port, final QName operation, final PolicyMapKeyHandler handler) { argument 56 this(service, port, operation, null, handler); 59 PolicyMapKey(final QName service, final QName port, final QName operation, final QName faultMessage, final PolicyMapKeyHandler handler) { argument 60 if (handler == null) { 68 this.handler = handler; 76 this.handler = that.handler; 91 void setHandler(PolicyMapKeyHandler handler) { argument [all...] |
/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/ |
H A D | Filter.java | 33 * before the application's exchange handler is invoked, and post-processing 34 * occurs after the exchange handler returns. Filters 39 * exchange handler. 53 * handler 56 private HttpHandler handler; field in class:Filter.Chain 58 public Chain (List<Filter> filters, HttpHandler handler) { argument 60 this.handler = handler; 65 * the users exchange handler, if this is the 70 * exchange handler wil [all...] |
/openjdk7/hotspot/src/share/tools/IdealGraphVisualizer/Util/src/com/sun/hotspot/igv/util/ |
H A D | DoubleClickAction.java | 35 private DoubleClickHandler handler; field in class:DoubleClickAction 37 public DoubleClickAction(DoubleClickHandler handler) { argument 38 this.handler = handler; 44 handler.handleDoubleClick(widget, event);
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/org/jvnet/fastinfoset/ |
H A D | FastInfosetResult.java | 64 ContentHandler handler = super.getHandler(); 65 if (handler == null) { 66 handler = new SAXDocumentSerializer(); 67 setHandler(handler); 69 ((SAXDocumentSerializer) handler).setOutputStream(_outputStream); 70 return handler;
|
/openjdk7/jaxp/src/org/xml/sax/ |
H A D | Parser.java | 118 * Allow an application to register a DTD event handler. 120 * <p>If the application does not register a DTD handler, all DTD 126 * handler in the middle of a parse, and the SAX parser must 127 * begin using the new handler immediately.</p> 129 * @param handler The DTD handler. 133 public abstract void setDTDHandler (DTDHandler handler); argument 137 * Allow an application to register a document event handler. 139 * <p>If the application does not register a document handler, all 144 * <p>Applications may register a new or different handler i 152 setDocumentHandler(DocumentHandler handler) argument 172 setErrorHandler(ErrorHandler handler) argument [all...] |
/openjdk7/jdk/src/windows/classes/java/lang/ |
H A D | Terminator.java | 42 private static SignalHandler handler = null; field in class:Terminator 49 if (handler != null) return; 55 handler = sh;
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/client/ |
H A D | HandlerConfiguration.java | 28 import com.sun.xml.internal.ws.api.handler.MessageHandler; 29 import com.sun.xml.internal.ws.handler.HandlerException; 32 import javax.xml.ws.handler.Handler; 33 import javax.xml.ws.handler.LogicalHandler; 34 import javax.xml.ws.handler.soap.SOAPHandler; 38 * This class holds the handler information and roles on the Binding (mutable info in the binding). 43 * During invocation in Stub.process(), snapshot of the handler configuration is set in Packet.handlerConfig. The 61 * @param handlerChain This contains the handler chain set on the Binding 71 for (Handler handler : handlerChain) { 72 if (handler instanceo [all...] |
/openjdk7/jdk/test/sun/security/ssl/com/sun/net/ssl/internal/ssl/GenSSLConfigs/ |
H A D | ServerThread.java | 41 // Flags controlling testing -- passed to handler 136 ServerHandler handler = new ServerHandler (s); 138 handler.setVerbosity (verbosity); 139 handler.setOutput (out); 141 handler.setDoRenegotiate (doRenegotiate); 142 handler.setInitiateHandshake (initiateHandshake); 143 handler.setListenHandshake (listenHandshake); 144 handler.setReverseRole (reverseRole); 145 handler.setNeedClientAuth (needClientAuth); 148 handler [all...] |
/openjdk7/corba/src/share/classes/com/sun/corba/se/spi/orbutil/proxy/ |
H A D | CompositeInvocationHandler.java | 34 /** Add an invocation handler for all methods on interface interf. 36 void addInvocationHandler( Class interf, InvocationHandler handler ) ; 38 /** Set the default invocation handler to use if none of the 41 void setDefaultHandler( InvocationHandler handler ) ;
|
H A D | CompositeInvocationHandlerImpl.java | 47 InvocationHandler handler ) 49 classToInvocationHandler.put( interf, handler ) ; 52 public void setDefaultHandler( InvocationHandler handler ) 54 defaultHandler = handler ; 63 InvocationHandler handler = 66 if (handler == null) { 68 handler = defaultHandler ; 77 // handler should never be null here. 79 return handler.invoke( proxy, method, args ) ;
|
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/handler/ |
H A D | MessageHandler.java | 26 package com.sun.xml.internal.ws.api.handler; 28 import javax.xml.ws.handler.Handler; 36 * to obtain access to the headers that may be processed by the handler. 50 * handler instance. <code>QName</code> is the qualified
|
/openjdk7/jdk/src/share/classes/sun/tools/java/ |
H A D | BinaryExceptionHandler.java | 29 * A single exception handler. This class hangs off BinaryCode. 43 int handler, ClassDeclaration xclass) { 46 handlerPC = handler; 42 BinaryExceptionHandler(int start, int end, int handler, ClassDeclaration xclass) argument
|
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/ |
H A D | Binding.java | 37 * Gets a copy of the handler chain for a protocol binding instance. 43 public java.util.List<javax.xml.ws.handler.Handler> getHandlerChain(); 46 * Sets the handler chain for the protocol binding instance. 48 * @param chain A List of handler configuration entries 50 * the handler chain 53 * avoid any overriding of a pre-configured handler 56 public void setHandlerChain(java.util.List<javax.xml.ws.handler.Handler> chain);
|
/openjdk7/jaxws/src/share/jaxws_classes/javax/xml/ws/handler/soap/ |
H A D | SOAPHandler.java | 26 package javax.xml.ws.handler.soap; 29 import javax.xml.ws.handler.Handler; 34 * to obtain access to the headers that may be processed by the handler. 45 * handler instance. <code>QName</code> is the qualified
|
/openjdk7/jdk/src/macosx/classes/com/apple/laf/ |
H A D | AquaTextAreaUI.java | 44 AquaFocusHandler handler; field in class:AquaTextAreaUI 49 handler = new AquaFocusHandler(); 50 c.addFocusListener(handler); 51 c.addPropertyChangeListener(handler); 61 c.removeFocusListener(handler); 62 c.removePropertyChangeListener(handler); 63 handler = null;
|