1 /***************************************************************************** 2 * Source code information 3 * ----------------------- 4 * Original author Ian Dickinson, HP Labs Bristol 5 * Author email Ian.Dickinson@hp.com 6 * Package Jena 7 * Created 4 Jan 2001 8 * Filename $RCSfile: DAMLDatatypeProperty.java,v $ 9 * Revision $Revision: 1.7 $ 10 * Release status Preview-release $State: Exp $ 11 * 12 * Last modified on $Date: 2005/02/21 12:04:59 $ 13 * by $Author: andy_seaborne $ 14 * 15 * (c) Copyright 2001, 2002, 2003, 2004, 2005 Hewlett-Packard Development Company, LP 16 * (see footer for full conditions) 17 *****************************************************************************/ 18 19 // Package 20 /////////////// 21 package com.hp.hpl.jena.ontology.daml; 22 23 24 // Imports 25 /////////////// 26 27 28 29 /** 30 * <p>Java encapsulation of a datatype property in a DAML ontology. A datatype property 31 * is a partition of the class of all properties, whose range values are drawn from concrete 32 * domains represented by XML schema expressions.</p> 33 * 34 * @author Ian Dickinson, HP Labs (<a HREF="mailto:Ian.Dickinson@hp.com">email</a>) 35 * @version CVS info: $Id: DAMLDatatypeProperty.java,v 1.7 2005/02/21 12:04:59 andy_seaborne Exp $ 36 */ 37 public interface DAMLDatatypeProperty 38 extends DAMLProperty 39 { 40 // Constants 41 ////////////////////////////////// 42 43 // External signature methods 44 ////////////////////////////////// 45 46 } 47 48 49 /* 50 (c) Copyright 2001, 2002, 2003, 2004, 2005 Hewlett-Packard Development Company, LP 51 All rights reserved. 52 53 Redistribution and use in source and binary forms, with or without 54 modification, are permitted provided that the following conditions 55 are met: 56 57 1. Redistributions of source code must retain the above copyright 58 notice, this list of conditions and the following disclaimer. 59 60 2. Redistributions in binary form must reproduce the above copyright 61 notice, this list of conditions and the following disclaimer in the 62 documentation and/or other materials provided with the distribution. 63 64 3. The name of the author may not be used to endorse or promote products 65 derived from this software without specific prior written permission. 66 67 THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR 68 IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES 69 OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. 70 IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, 71 INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT 72 NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 73 DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY 74 THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT 75 (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF 76 THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. 77 */ 78 79