|
|||||||||||||||||||
| Source file | Conditionals | Statements | Methods | TOTAL | |||||||||||||||
| CommentImpl.java | - | 60% | 50% | 54.5% |
|
||||||||||||||
| 1 | /* | |
| 2 | * Licensed to the Apache Software Foundation (ASF) under one or more | |
| 3 | * contributor license agreements. See the NOTICE file distributed with | |
| 4 | * this work for additional information regarding copyright ownership. | |
| 5 | * The ASF licenses this file to You under the Apache License, Version 2.0 | |
| 6 | * (the "License"); you may not use this file except in compliance with | |
| 7 | * the License. You may obtain a copy of the License at | |
| 8 | * | |
| 9 | * http://www.apache.org/licenses/LICENSE-2.0 | |
| 10 | * | |
| 11 | * Unless required by applicable law or agreed to in writing, software | |
| 12 | * distributed under the License is distributed on an "AS IS" BASIS, | |
| 13 | * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. | |
| 14 | * See the License for the specific language governing permissions and | |
| 15 | * limitations under the License. | |
| 16 | * | |
| 17 | * $Id: CommentImpl.java 571948 2007-09-02 10:51:37Z vgritsenko $ | |
| 18 | */ | |
| 19 | ||
| 20 | package org.apache.xindice.xml.dom; | |
| 21 | ||
| 22 | import org.w3c.dom.Comment; | |
| 23 | import org.w3c.dom.Node; | |
| 24 | ||
| 25 | /** | |
| 26 | * CommentImpl | |
| 27 | * | |
| 28 | * @version $Revision: 571948 $, $Date: 2007-09-02 03:51:37 -0700 (Sun, 02 Sep 2007) $ | |
| 29 | */ | |
| 30 | public final class CommentImpl extends CharacterDataImpl | |
| 31 | implements Comment { | |
| 32 | ||
| 33 | 0 | public CommentImpl() { |
| 34 | } | |
| 35 | ||
| 36 | 105 | public CommentImpl(NodeImpl parent, byte[] data, int pos, int len) { |
| 37 | 105 | super(parent, data, pos, len); |
| 38 | } | |
| 39 | ||
| 40 | 0 | public CommentImpl(NodeImpl parent, boolean dirty) { |
| 41 | 0 | super(parent, dirty); |
| 42 | } | |
| 43 | ||
| 44 | 532 | public CommentImpl(NodeImpl parent, String nodeValue) { |
| 45 | 532 | super(parent, nodeValue); |
| 46 | } | |
| 47 | ||
| 48 | 2796 | public short getNodeType() { |
| 49 | 2796 | return Node.COMMENT_NODE; |
| 50 | } | |
| 51 | ||
| 52 | 0 | public String getNodeName() { |
| 53 | 0 | return "#comment"; |
| 54 | } | |
| 55 | } |
|
||||||||||