Skip to content

Package: Detail1_1Impl

Detail1_1Impl

nameinstructionbranchcomplexitylinemethod
Detail1_1Impl(SOAPDocumentImpl)
M: 0 C: 5
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%
Detail1_1Impl(SOAPDocumentImpl, Element)
M: 0 C: 5
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%
Detail1_1Impl(SOAPDocumentImpl, String)
M: 0 C: 6
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%
createDetailEntry(Name)
M: 0 C: 8
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%
createDetailEntry(QName)
M: 0 C: 8
100%
M: 0 C: 0
100%
M: 0 C: 1
100%
M: 0 C: 2
100%
M: 0 C: 1
100%

Coverage

1: /*
2: * Copyright (c) 1997, 2022 Oracle and/or its affiliates. All rights reserved.
3: *
4: * This program and the accompanying materials are made available under the
5: * terms of the Eclipse Distribution License v. 1.0, which is available at
6: * http://www.eclipse.org/org/documents/edl-v10.php.
7: *
8: * SPDX-License-Identifier: BSD-3-Clause
9: */
10:
11: package com.sun.xml.messaging.saaj.soap.ver1_1;
12:
13: import javax.xml.namespace.QName;
14: import jakarta.xml.soap.DetailEntry;
15: import jakarta.xml.soap.Name;
16:
17: import com.sun.xml.messaging.saaj.soap.SOAPDocumentImpl;
18: import com.sun.xml.messaging.saaj.soap.impl.DetailImpl;
19: import com.sun.xml.messaging.saaj.soap.name.NameImpl;
20: import org.w3c.dom.Element;
21:
22: public class Detail1_1Impl extends DetailImpl {
23:
24: public Detail1_1Impl(SOAPDocumentImpl ownerDoc, String prefix) {
25: super(ownerDoc, NameImpl.createDetail1_1Name(prefix));
26: }
27: public Detail1_1Impl(SOAPDocumentImpl ownerDoc) {
28: super(ownerDoc, NameImpl.createDetail1_1Name());
29: }
30:
31: public Detail1_1Impl(SOAPDocumentImpl ownerDoc, Element domElement) {
32: super(ownerDoc, domElement);
33: }
34:
35: @Override
36: protected DetailEntry createDetailEntry(Name name) {
37: return new DetailEntry1_1Impl(
38: (SOAPDocumentImpl) getOwnerDocument(),
39: name);
40: }
41: @Override
42: protected DetailEntry createDetailEntry(QName name) {
43: return new DetailEntry1_1Impl(
44: (SOAPDocumentImpl) getOwnerDocument(),
45: name);
46: }
47:
48: }