01: /*****************************************************************************
02: * Source code information
03: * -----------------------
04: * Original author Ian Dickinson, HP Labs Bristol
05: * Author email Ian.Dickinson@hp.com
06: * Package Jena 2
07: * Web http://sourceforge.net/projects/jena/
08: * Created 01-Apr-2003
09: * Filename $RCSfile: AnnotationProperty.java,v $
10: * Revision $Revision: 1.8 $
11: * Release status $State: Exp $
12: *
13: * Last modified on $Date: 2008/01/02 12:06:41 $
14: * by $Author: andy_seaborne $
15: *
16: * (c) Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008 Hewlett-Packard Development Company, LP
17: * (see footer for full conditions)
18: *****************************************************************************/package com.hp.hpl.jena.ontology;
19:
20: // Imports
21: ///////////////
22: import com.hp.hpl.jena.rdf.model.*;
23:
24: /**
25: * <p>
26: * Interface that represents the category of annotation properties in an ontology
27: * language. Annotation properties are distinguished in some languages (such as
28: * OWL) - in order to maintain theoretical properties of the language, which depend
29: * on clean separation of syntactic categories. Annotation properties may not be
30: * used in property expressions. There is no guarantee that a given language will
31: * have any annotation properties.
32: * </p>
33: *
34: * @author Ian Dickinson, HP Labs
35: * (<a href="mailto:Ian.Dickinson@hp.com" >email</a>)
36: * @version CVS $Id: AnnotationProperty.java,v 1.8 2008/01/02 12:06:41 andy_seaborne Exp $
37: */
38: public interface AnnotationProperty extends OntProperty, Property {
39: // Constants
40: //////////////////////////////////
41:
42: // External signature methods
43: //////////////////////////////////
44:
45: }
46:
47: /*
48: (c) Copyright 2002, 2003, 2004, 2005, 2006, 2007, 2008 Hewlett-Packard Development Company, LP
49: All rights reserved.
50:
51: Redistribution and use in source and binary forms, with or without
52: modification, are permitted provided that the following conditions
53: are met:
54:
55: 1. Redistributions of source code must retain the above copyright
56: notice, this list of conditions and the following disclaimer.
57:
58: 2. Redistributions in binary form must reproduce the above copyright
59: notice, this list of conditions and the following disclaimer in the
60: documentation and/or other materials provided with the distribution.
61:
62: 3. The name of the author may not be used to endorse or promote products
63: derived from this software without specific prior written permission.
64:
65: THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
66: IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
67: OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
68: IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
69: INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
70: NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
71: DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
72: THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
73: (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
74: THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
75: */
|