1 /*
2 * Copyright 2001-2004 (C) MetaStuff, Ltd. All Rights Reserved.
3 *
4 * This software is open source.
5 * See the bottom of this file for the licence.
6 *
7 * $Id: Entity.java,v 1.5 2004/06/25 08:03:33 maartenc Exp $
8 */
9
10 package org.dom4j;
11
12 /*** <p><code>Entity</code> defines an XML entity.</p>
13 *
14 * @author <a href="mailto:james.strachan@metastuff.com">James Strachan</a>
15 * @version $Revision: 1.5 $
16 */
17 public interface Entity extends Node {
18
19 }
20
21
22
23
24 /*
25 * Redistribution and use of this software and associated documentation
26 * ("Software"), with or without modification, are permitted provided
27 * that the following conditions are met:
28 *
29 * 1. Redistributions of source code must retain copyright
30 * statements and notices. Redistributions must also contain a
31 * copy of this document.
32 *
33 * 2. Redistributions in binary form must reproduce the
34 * above copyright notice, this list of conditions and the
35 * following disclaimer in the documentation and/or other
36 * materials provided with the distribution.
37 *
38 * 3. The name "DOM4J" must not be used to endorse or promote
39 * products derived from this Software without prior written
40 * permission of MetaStuff, Ltd. For written permission,
41 * please contact dom4j-info@metastuff.com.
42 *
43 * 4. Products derived from this Software may not be called "DOM4J"
44 * nor may "DOM4J" appear in their names without prior written
45 * permission of MetaStuff, Ltd. DOM4J is a registered
46 * trademark of MetaStuff, Ltd.
47 *
48 * 5. Due credit should be given to the DOM4J Project -
49 * http://www.dom4j.org
50 *
51 * THIS SOFTWARE IS PROVIDED BY METASTUFF, LTD. AND CONTRIBUTORS
52 * ``AS IS'' AND ANY EXPRESSED OR IMPLIED WARRANTIES, INCLUDING, BUT
53 * NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND
54 * FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL
55 * METASTUFF, LTD. OR ITS CONTRIBUTORS BE LIABLE FOR ANY DIRECT,
56 * INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES
57 * (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR
58 * SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
59 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
60 * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
61 * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED
62 * OF THE POSSIBILITY OF SUCH DAMAGE.
63 *
64 * Copyright 2001-2004 (C) MetaStuff, Ltd. All Rights Reserved.
65 *
66 * $Id: Entity.java,v 1.5 2004/06/25 08:03:33 maartenc Exp $
67 */