src/share/classes/com/sun/xml/internal/messaging/saaj/soap/impl/CommentImpl.java

Mon, 04 May 2009 21:10:41 -0700

author
tbell
date
Mon, 04 May 2009 21:10:41 -0700
changeset 50
42dfec6871f6
parent 45
31822b475baa
child 78
860b95cc8d1d
permissions
-rw-r--r--

6658158: Mutable statics in SAAJ (findbugs)
6658163: txw2.DatatypeWriter.BUILDIN is a mutable static (findbugs)
Reviewed-by: darcy

     1 /*
     2  * Copyright 2005-2006 Sun Microsystems, Inc.  All Rights Reserved.
     3  * DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
     4  *
     5  * This code is free software; you can redistribute it and/or modify it
     6  * under the terms of the GNU General Public License version 2 only, as
     7  * published by the Free Software Foundation.  Sun designates this
     8  * particular file as subject to the "Classpath" exception as provided
     9  * by Sun in the LICENSE file that accompanied this code.
    10  *
    11  * This code is distributed in the hope that it will be useful, but WITHOUT
    12  * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
    13  * FITNESS FOR A PARTICULAR PURPOSE.  See the GNU General Public License
    14  * version 2 for more details (a copy is included in the LICENSE file that
    15  * accompanied this code).
    16  *
    17  * You should have received a copy of the GNU General Public License version
    18  * 2 along with this work; if not, write to the Free Software Foundation,
    19  * Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA.
    20  *
    21  * Please contact Sun Microsystems, Inc., 4150 Network Circle, Santa Clara,
    22  * CA 95054 USA or visit www.sun.com if you need additional information or
    23  * have any questions.
    24  */
    25 /*
    26  *
    27  *
    28  *
    29  */
    32 package com.sun.xml.internal.messaging.saaj.soap.impl;
    34 import java.util.ResourceBundle;
    35 import java.util.logging.Logger;
    37 import javax.xml.soap.SOAPElement;
    38 import javax.xml.soap.SOAPException;
    40 import org.w3c.dom.DOMException;
    41 import org.w3c.dom.Text;
    43 import com.sun.xml.internal.messaging.saaj.soap.SOAPDocumentImpl;
    44 import com.sun.xml.internal.messaging.saaj.util.LogDomainConstants;
    46 public class CommentImpl
    47     extends com.sun.org.apache.xerces.internal.dom.CommentImpl
    48     implements javax.xml.soap.Text, org.w3c.dom.Comment {
    50     protected static final Logger log =
    51         Logger.getLogger(LogDomainConstants.SOAP_IMPL_DOMAIN,
    52                          "com.sun.xml.internal.messaging.saaj.soap.impl.LocalStrings");
    53     protected static ResourceBundle rb =
    54         log.getResourceBundle();
    56     public CommentImpl(SOAPDocumentImpl ownerDoc, String text) {
    57         super(ownerDoc, text);
    58     }
    60     public String getValue() {
    61         String nodeValue = getNodeValue();
    62         return (nodeValue.equals("") ? null : nodeValue);
    63     }
    65     public void setValue(String text) {
    66         setNodeValue(text);
    67     }
    70     public void setParentElement(SOAPElement element) throws SOAPException {
    71         if (element == null) {
    72             log.severe("SAAJ0112.impl.no.null.to.parent.elem");
    73             throw new SOAPException("Cannot pass NULL to setParentElement");
    74         }
    75         ((ElementImpl) element).addNode(this);
    76     }
    78     public SOAPElement getParentElement() {
    79         return (SOAPElement) getParentNode();
    80     }
    82     public void detachNode() {
    83         org.w3c.dom.Node parent = getParentNode();
    84         if (parent != null) {
    85             parent.removeChild(this);
    86         }
    87     }
    89     public void recycleNode() {
    90         detachNode();
    91         // TBD
    92         //  - add this to the factory so subsequent
    93         //    creations can reuse this object.
    94     }
    96     public boolean isComment() {
    97         return true;
    98     }
   100     public Text splitText(int offset) throws DOMException {
   101         log.severe("SAAJ0113.impl.cannot.split.text.from.comment");
   102         throw new UnsupportedOperationException("Cannot split text from a Comment Node.");
   103     }
   105     public Text replaceWholeText(String content) throws DOMException {
   106         log.severe("SAAJ0114.impl.cannot.replace.wholetext.from.comment");
   107         throw new UnsupportedOperationException("Cannot replace Whole Text from a Comment Node.");
   108     }
   110     public String getWholeText() {
   111         //TODO: maybe we have to implement this in future.
   112         throw new UnsupportedOperationException("Not Supported");
   113     }
   115     public boolean isElementContentWhitespace() {
   116         //TODO: maybe we have to implement this in future.
   117         throw new UnsupportedOperationException("Not Supported");
   118     }
   120 }

mercurial