/*
* Copyright (c) 2004, 2011, Oracle and/or its affiliates. All rights reserved.
* ORACLE PROPRIETARY/CONFIDENTIAL. Use is subject to license terms.
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*
*/
package javax.xml.soap;
/**
* A representation of a node whose value is text. A Text
object
* may represent text that is content or text that is a comment.
*
*/
public interface Text extends Node, org.w3c.dom.Text {
/**
* Retrieves whether this Text
object represents a comment.
*
* @return true
if this Text
object is a
* comment; false
otherwise
*/
public boolean isComment();
}