Searched defs:that (Results 126 - 150 of 216) sorted by relevance

123456789

/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/handler/
H A DClientSOAPHandlerTube.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
72 * first and then a SOAPHandlerTube is created with a handler to that
84 private ClientSOAPHandlerTube(ClientSOAPHandlerTube that, TubeCloner cloner) { argument
85 super(that, cloner);
86 this.binding = that.binding;
H A DServerLogicalHandlerTube.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
69 * first and then a LogicalHandlerTube is created with a handler to that
85 private ServerLogicalHandlerTube(ServerLogicalHandlerTube that, TubeCloner cloner) { argument
86 super(that, cloner);
87 this.binding = that.binding;
88 this.seiModel = that.seiModel;
89 this.handlers = that.handlers;
H A DServerMessageHandlerTube.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
65 private ServerMessageHandlerTube(ServerMessageHandlerTube that, TubeCloner cloner) { argument
66 super(that, cloner);
67 this.seiModel = that.seiModel;
68 this.binding = that.binding;
69 this.handlers = that.handlers;
70 this.roles = that.roles;
H A DServerSOAPHandlerTube.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
73 * first and then a SOAPHandlerTube is created with a handler to that
86 private ServerSOAPHandlerTube(ServerSOAPHandlerTube that, TubeCloner cloner) { argument
87 super(that, cloner);
88 this.binding = that.binding;
89 this.handlers = that.handlers;
90 this.roles = that.roles;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/
H A DAbstractMessageImpl.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
60 * The idea is that those implementations may be non-optimal but
65 * {@link Message} classes that are used more commonly should
74 * Used to implement some of the methods, but nothing more than that.
77 * So if you aren't using those methods that use this field,
89 protected AbstractMessageImpl(AbstractMessageImpl that) { argument
90 this.soapVersion = that.soapVersion;
113 * Default implementation that relie
[all...]
H A DDOMMessage.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
52 * {@link Message} backed by a DOM {@link Element} that represents the payload.
78 private DOMMessage(DOMMessage that) { argument
79 super(that);
80 this.headers = HeaderList.copy(that.headers);
81 this.payload = that.payload;
H A DEmptyMessageImpl.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
46 * {@link Message} that has no body.
76 private EmptyMessageImpl(EmptyMessageImpl that) { argument
77 super(that);
78 this.headers = new HeaderList(that.headers);
79 this.attachmentSet = that.attachmentSet;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/policy/
H A DPolicyMapKey.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
71 PolicyMapKey(final PolicyMapKey that) { argument
72 this.service = that.service;
73 this.port = that.port;
74 this.operation = that.operation;
75 this.faultMessage = that.faultMessage;
76 this.handler = that.handler;
104 public boolean equals(final Object that) { argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/protocol/soap/
H A DMUTube.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
84 protected MUTube(MUTube that, TubeCloner cloner) { argument
85 super(that, cloner);
86 binding = that.binding;
87 soapVersion = that.soapVersion;
91 * @param headers HeaderList that needs MU processing
94 * @param handlerKnownHeaders Set of headers that the handlerchain associated with the binding understands
95 * @return returns the headers that hav
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/server/
H A DServerSchemaValidationTube.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
51 * {@link Tube} that does the schema validation on the server side.
114 // Also converting this to fault message so that handlers may get
139 protected ServerSchemaValidationTube(ServerSchemaValidationTube that, TubeCloner cloner) { argument
140 super(that,cloner);
141 //this.docs = that.docs;
142 this.schema = that.schema; // Schema is thread-safe
144 this.noValidation = that
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/transport/
H A DDeferredTransportPipe.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
39 * Proxy transport {@link Tube} and {@link Pipe} that lazily determines the
44 * and thus it's expected that the application will configure {@link BindingProvider}
79 public DeferredTransportPipe(DeferredTransportPipe that, TubeCloner cloner) { argument
80 super(that,cloner);
81 this.classLoader = that.classLoader;
82 this.context = that.context;
83 if(that
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/util/pipe/
H A DDumpTube.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
43 * {@link Pipe} that dumps messages that pass through.
57 * Specify the name that identifies this {@link DumpTube}
78 protected DumpTube(DumpTube that, TubeCloner cloner) { argument
79 super(that,cloner);
80 this.name = that.name;
81 this.out = that
[all...]
/openjdk7/langtools/src/share/classes/com/sun/tools/javac/comp/
H A DEnv.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
34 * of the subtree that's currently visited, such as the enclosing method,
40 * If you write code that depends on this, you do so at your own risk.
101 public Env<A> dupto(Env<A> that) { argument
102 that.next = this;
103 that.outer = this.outer;
104 that.toplevel = this.toplevel;
105 that
[all...]
/openjdk7/jaxp/src/com/sun/org/apache/bcel/internal/generic/
H A DInstruction.java14 * modification, are permitted provided that the following conditions
198 // If a class by that name does not exist, the opcode is illegal.
199 // Note that IMPDEP1, IMPDEP2, BREAKPOINT are also illegal in a sense.
302 * @return true if that is an Instruction and has the same opcode
304 public boolean equals(Object that) { argument
305 return (that instanceof Instruction)?
306 cmp.equals(this, (Instruction)that) : false;
/openjdk7/corba/src/share/classes/com/sun/tools/corba/se/idl/
H A DMethodEntry.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
56 protected MethodEntry (MethodEntry that) argument
58 super (that);
59 _exceptionNames = (Vector)that._exceptionNames.clone ();
60 _exceptions = (Vector)that._exceptions.clone ();
61 _contexts = (Vector)that._contexts.clone ();
62 _parameters = (Vector)that._parameters.clone ();
63 _oneway = that
66 MethodEntry(InterfaceEntry that, IDLID clone) argument
[all...]
H A DValueEntry.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
57 protected ValueEntry (ValueEntry that) argument
59 super (that);
60 _supportsNames = (Vector)that._supportsNames.clone ();
61 _supports = (Vector)that._supports.clone ();
62 _initializers = (Vector)that._initializers.clone ();
63 _custom = that._custom;
64 _isSafe = that
67 ValueEntry(SymtabEntry that, IDLID clone) argument
[all...]
/openjdk7/jdk/make/tools/src/build/tools/generatebreakiteratordata/
H A DCharSet.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
67 * used to parse a description that has been parsed before
205 // that a set that includes nothing but ^ expressions
233 // defines the end of a range. Add or subtract that range
293 * the Unicode database or a single character that begins one or more
303 // if we have two characters, search the category map for that code
316 // with that lette
394 union(CharSet that) argument
401 internalUnion(CharSet that) argument
508 intersection(CharSet that) argument
515 internalIntersection(CharSet that) argument
598 difference(CharSet that) argument
605 internalDifference(CharSet that) argument
703 equals(Object that) argument
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/
H A DRawTypeSet.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
110 Mode or(Mode that) { argument
111 switch(Math.max(this.rank,that.rank)) {
125 * says they cannot be in type refs, we cannot do that either.
136 // the way we compute this is that we start from the most optimistic value,
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/tools/internal/xjc/reader/dtd/
H A DElement.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
85 * If this element maps to a class, that class representation.
311 public int compareTo(Element that) { argument
312 return this.name.compareTo(that.name);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/bind/v2/runtime/output/
H A DC14nXmlOutput.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
39 * {@link XmlOutput} that generates canonical XML.
106 public int compareTo(StaticAttribute that) { argument
107 return this.name.compareTo(that.name);
128 public int compareTo(DynamicAttribute that) { argument
129 int r = this.getURI().compareTo(that.getURI());
131 return this.localName.compareTo(that.localName);
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/addressing/
H A DW3CWsaServerTube.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
58 public W3CWsaServerTube(W3CWsaServerTube that, TubeCloner cloner) { argument
59 super(that, cloner);
60 this.af = that.af;
H A DWsaServerTube.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
84 public WsaServerTube(WsaServerTube that, TubeCloner cloner) { argument
85 super(that, cloner);
86 endpoint = that.endpoint;
102 // so that they can be used after responsePacket is received.
145 // close the transportBackChannel if we know that
152 // close the transportBackChannel if we know that
H A DWsaTube.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
69 * Port that we are processing.
92 public WsaTube(WsaTube that, TubeCloner cloner) { argument
93 super(that, cloner);
94 this.wsdlPort = that.wsdlPort;
95 this.binding = that.binding;
96 this.helper = that.helper;
97 addressingVersion = that
[all...]
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/encoding/fastinfoset/
H A DFastInfosetStreamSOAPCodec.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
78 /* package */ FastInfosetStreamSOAPCodec(FastInfosetStreamSOAPCodec that) { argument
79 this._soapCodec = (StreamSOAPCodec) that._soapCodec.copy();
80 this._retainState = that._retainState;
81 this._defaultContentType = that._defaultContentType;
/openjdk7/jaxws/src/share/jaxws_classes/com/sun/xml/internal/ws/message/jaxb/
H A DJAXBMessage.java9 * by Oracle in the LICENSE file that accompanied this code.
11 * This code is distributed in the hope that it will be useful, but WITHOUT
14 * version 2 for more details (a copy is included in the LICENSE file that
76 * The JAXB object that represents the payload.
97 // If we have swaRef, then that means we might have attachments.
124 * The JAXB object that represents the payload. must not be null. This object
154 // If we have swaRef, then that means we might have attachments.
189 public JAXBMessage(JAXBMessage that) { argument
190 super(that);
191 this.headers = that
[all...]

Completed in 726 milliseconds

123456789