Lines Matching refs:bodyTag

135             ElemInfo bdyElem =  new ElemInfo(bodyTag,   envElem);
202 this.bodyTag = DEFAULT_TAGS.get(base+2);
217 public StreamMessage(@NotNull TagInfoset envelopeTag, @Nullable TagInfoset headerTag, @NotNull AttachmentSet attachmentSet, @Nullable MessageHeaders headers, @NotNull TagInfoset bodyTag, @NotNull XMLStreamReader reader, @NotNull SOAPVersion soapVersion) {
218 this(envelopeTag, headerTag, attachmentSet, headers, null, bodyTag, null, reader, soapVersion);
221 public StreamMessage(@NotNull TagInfoset envelopeTag, @Nullable TagInfoset headerTag, @NotNull AttachmentSet attachmentSet, @Nullable MessageHeaders headers, @Nullable String bodyPrologue, @NotNull TagInfoset bodyTag, @Nullable String bodyEpilogue, @NotNull XMLStreamReader reader, @NotNull SOAPVersion soapVersion) {
223 init(envelopeTag, headerTag, attachmentSet, headers, bodyPrologue, bodyTag, bodyEpilogue, reader, soapVersion);
226 private void init(@NotNull TagInfoset envelopeTag, @Nullable TagInfoset headerTag, @NotNull AttachmentSet attachmentSet, @Nullable MessageHeaders headers, @Nullable String bodyPrologue, @NotNull TagInfoset bodyTag, @Nullable String bodyEpilogue, @NotNull XMLStreamReader reader, @NotNull SOAPVersion soapVersion) {
231 if(bodyTag == null ) {
236 this.bodyTag = bodyTag;
293 for(int i=0; i < bodyTag.ns.length; i+=2) {
294 nss.declarePrefix(bodyTag.ns[i], bodyTag.ns[i+1]);
436 bodyTag.writeStart(writer);
520 // would be to create a filtering XMLStreamReader from reader+envelopeTag+bodyTag
522 c.storeElement(bodyTag.nsUri, bodyTag.localName, bodyTag.prefix, bodyTag.ns);
559 return new StreamMessage(envelopeTag, headerTag, attachmentSet, HeaderList.copy(headers), bodyPrologue, bodyTag, bodyEpilogue, clone, soapVersion).copyFrom(this);
590 bodyTag.writeStart(contentHandler);
592 bodyTag.writeEnd(contentHandler);
717 TagInfoset bodyTag = new TagInfoset(reader);
720 message.init(envelopeTag,headerTag,message.attachmentSet,headers,bodyPrologue,bodyTag,null,reader,soapVersion);
784 ElemInfo bdyElem = new ElemInfo(bodyTag, envElem);