Searched defs:handler (Results 26 - 50 of 311) sorted by relevance

1234567891011>>

/openjdk7/jdk/src/share/classes/com/sun/net/httpserver/
H A DFilter.java33 * 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/jdk/src/macosx/classes/com/apple/laf/
H A DAquaTextAreaUI.java44 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;
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/org/xml/sax/
H A DParser.java118 * 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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/api/
H A DBridgeContext.java60 * Registers the error handler that receives unmarshalling/marshalling errors.
62 * @param handler
67 public abstract void setErrorHandler(ValidationEventHandler handler); argument
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/util/
H A DFatalAdapter.java40 public FatalAdapter(ErrorHandler handler) { argument
41 this.core = handler;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/fastinfoset/tools/
H A DStAX2SAXReader.java43 * Content handler where events are pushed.
48 * Lexical handler to report lexical events.
57 public StAX2SAXReader(XMLStreamReader reader, ContentHandler handler) { argument
58 _handler = handler;
66 public void setContentHandler(ContentHandler handler) { argument
67 _handler = handler;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/api/handler/
H A DMessageHandlerContext.java26 package com.sun.xml.internal.ws.api.handler;
34 import javax.xml.ws.handler.MessageContext;
64 * @see javax.xml.ws.handler.soap.SOAPMessageContext#getRoles()
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DHandlerException.java26 package com.sun.xml.internal.ws.handler;
32 * Exception thrown by handler-related code. Extends
50 super("handler.nestedError", arg);
54 return "com.sun.xml.internal.ws.resources.handler";
H A DLogicalMessageContextImpl.java26 package com.sun.xml.internal.ws.handler;
39 import javax.xml.ws.handler.LogicalMessageContext;
H A DPortInfoImpl.java26 package com.sun.xml.internal.ws.handler;
32 import javax.xml.ws.handler.PortInfo;
42 * place a handler chain into the HandlerResolver map. Another is
45 * necessary handler chain to set on a binding instance.
H A DSOAPHandlerProcessor.java34 package com.sun.xml.internal.ws.handler;
46 import javax.xml.ws.handler.Handler;
68 * because during a response an exception from a handler
85 // severe since this is from runtime and not handler
87 "exception while creating fault message in handler chain", e);
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;
/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/jaxws/src/share/jaxws_classes/com/sun/xml/internal/xsom/parser/
H A DXMLParser.java45 * and sends SAX events to the given content handler.
52 * this handler so that XSOM can recognize that something went wrong.
61 * must be reported to the error handler.
63 void parse( InputSource source, ContentHandler handler, argument
/openjdk7/jdk/src/share/classes/sun/tools/java/
H A DBinaryExceptionHandler.java29 * 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/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/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/javax/xml/ws/spi/http/
H A DHttpContext.java44 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/com/sun/org/apache/xerces/internal/impl/xs/traversers/
H A DXSDAbstractIDConstraintTraverser.java43 public XSDAbstractIDConstraintTraverser (XSDHandler handler, argument
45 super(handler, gAttrCheck);
H A DXSDAttributeGroupTraverser.java53 XSDAttributeGroupTraverser (XSDHandler handler, argument
56 super(handler, gAttrCheck);
H A DXSDGroupTraverser.java54 XSDGroupTraverser (XSDHandler handler, argument
57 super(handler, gAttrCheck);
H A DXSDKeyrefTraverser.java42 public XSDKeyrefTraverser (XSDHandler handler, argument
44 super(handler, gAttrCheck);
H A DXSDUniqueOrKeyTraverser.java42 public XSDUniqueOrKeyTraverser (XSDHandler handler, argument
44 super(handler, gAttrCheck);
H A DXSDWildcardTraverser.java67 * @param handler
71 XSDWildcardTraverser (XSDHandler handler, argument
73 super(handler, gAttrCheck);

Completed in 147 milliseconds

1234567891011>>