src/share/classes/com/sun/xml/internal/messaging/saaj/soap/impl/TextImpl.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.logging.Logger;
    36 import javax.xml.soap.SOAPElement;
    37 import javax.xml.soap.SOAPException;
    39 import com.sun.xml.internal.messaging.saaj.soap.SOAPDocumentImpl;
    40 import com.sun.xml.internal.messaging.saaj.util.LogDomainConstants;
    42 public class TextImpl
    43     extends com.sun.org.apache.xerces.internal.dom.TextImpl
    44     implements javax.xml.soap.Text, org.w3c.dom.Text {
    46     protected static final Logger log =
    47         Logger.getLogger(LogDomainConstants.SOAP_IMPL_DOMAIN,
    48                          "com.sun.xml.internal.messaging.saaj.soap.impl.LocalStrings");
    50     public TextImpl(SOAPDocumentImpl ownerDoc, String text) {
    51         super(ownerDoc, text);
    52     }
    54     public String getValue() {
    55         String nodeValue = getNodeValue();
    56         return (nodeValue.equals("") ? null : nodeValue);
    57     }
    59     public void setValue(String text) {
    60         setNodeValue(text);
    61     }
    63     public void setParentElement(SOAPElement parent) throws SOAPException {
    64         if (parent == null) {
    65             log.severe("SAAJ0126.impl.cannot.locate.ns");
    66             throw new SOAPException("Cannot pass NULL to setParentElement");
    67         }
    68         ((ElementImpl) parent).addNode(this);
    69     }
    71     public SOAPElement getParentElement() {
    72         return (SOAPElement) getParentNode();
    73     }
    76     public void detachNode() {
    77         org.w3c.dom.Node parent = getParentNode();
    78         if (parent != null) {
    79             parent.removeChild(this);
    80         }
    81     }
    83     public void recycleNode() {
    84         detachNode();
    85         // TBD
    86         //  - add this to the factory so subsequent
    87         //    creations can reuse this object.
    88     }
    90     public boolean isComment() {
    91         String txt = getNodeValue();
    93         return txt.startsWith("<!--") && txt.endsWith("-->");
    94     }
    95 }

mercurial