001/*
002 * Copyright 2001 (C) MetaStuff, Ltd. All Rights Reserved.
003 * 
004 * This software is open source. 
005 * See the bottom of this file for the licence.
006 * 
007 * $Id: CDATA.java,v 1.2 2001/01/09 20:43:11 jstrachan Exp $
008 */
009
010package org.dom4j;
011
012/**<p><code>CDATA</code> defines an XML CDATA section.</p>
013  *
014  * @author <a href="mailto:james.strachan@metastuff.com">James Strachan</a>
015  * @version $Revision: 1.2 $
016  */
017public interface CDATA extends CharacterData {
018
019}
020
021
022
023
024/*
025 * Redistribution and use of this software and associated documentation
026 * ("Software"), with or without modification, are permitted provided
027 * that the following conditions are met:
028 *
029 * 1. Redistributions of source code must retain copyright
030 *    statements and notices.  Redistributions must also contain a
031 *    copy of this document.
032 *
033 * 2. Redistributions in binary form must reproduce the
034 *    above copyright notice, this list of conditions and the
035 *    following disclaimer in the documentation and/or other
036 *    materials provided with the distribution.
037 *
038 * 3. The name "DOM4J" must not be used to endorse or promote
039 *    products derived from this Software without prior written
040 *    permission of MetaStuff, Ltd.  For written permission,
041 *    please contact dom4j-info@metastuff.com.
042 *
043 * 4. Products derived from this Software may not be called "DOM4J"
044 *    nor may "DOM4J" appear in their names without prior written
045 *    permission of MetaStuff, Ltd. DOM4J is a registered
046 *    trademark of MetaStuff, Ltd.
047 *
048 * 5. Due credit should be given to the DOM4J Project
049 *    (http://dom4j.org/).
050 *
051 * THIS SOFTWARE IS PROVIDED BY METASTUFF, LTD. AND CONTRIBUTORS
052 * ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
053 * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
054 * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL
055 * METASTUFF, LTD. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
056 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
057 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
058 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
059 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
060 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
061 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
062 * OF THE POSSIBILITY OF SUCH DAMAGE.
063 *
064 * Copyright 2001 (C) MetaStuff, Ltd. All Rights Reserved.
065 *
066 * $Id: CDATA.java,v 1.2 2001/01/09 20:43:11 jstrachan Exp $
067 */