1 /*
2 wsmo4j - a WSMO API and Reference Implementation
3 Copyright (c) 2004-2005, OntoText Lab. / SIRMA
4 This library is free software; you can redistribute it and/or modify it under
5 the terms of the GNU Lesser General Public License as published by the Free
6 Software Foundation; either version 2.1 of the License, or (at your option)
7 any later version.
8 This library is distributed in the hope that it will be useful, but WITHOUT
9 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
10 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more
11 details.
12 You should have received a copy of the GNU Lesser General Public License along
13 with this library; if not, write to the Free Software Foundation, Inc.,
14 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
15 */
16
17 /**
18 * <p>Title: WSMO4J</p>
19 * <p>Description: WSMO API and a Reference Implementation</p>
20 * <p>Copyright: Copyright (c) 2004-2005</p>
21 * <p>Company: OntoText Lab. / SIRMA </p>
22 */
23
24 package org.wsmo.common;
25
26
27 import org.omwg.logicalexpression.terms.*;
28
29
30 /**
31 * Base interface for identifiers.
32 * There are three types of identifiers defined at present:
33 * - IRI
34 * - anonymous numbered ID
35 * - anonymous unnumbered ID
36 *
37 * @author not attributable
38 * @version $Revision: 988 $ $Date: 2005-09-16 17:04:15 +0300 (Fri, 16 Sep 2005) $
39 */
40 public interface Identifier
41 extends Term {
42
43 }
44 /*
45 * $Log$
46 * Revision 1.8 2005/09/16 14:03:35 alex_simov
47 * Identifier.asString() removed, use Object.toString() instead
48 * (Implementations MUST override toString())
49 *
50 * Revision 1.7 2005/09/09 10:48:51 marin_dimitrov
51 * formatting
52 *
53 * Revision 1.6 2005/09/02 13:32:43 ohamano
54 * move logicalexpression packages from ext to core
55 * move tests from logicalexpression.test to test module
56 *
57 * Revision 1.5 2005/09/02 09:43:27 ohamano
58 * integrate wsmo-api and le-api on api and reference implementation level; full parser, serializer and validator integration will be next step
59 *
60 * Revision 1.4 2005/06/01 10:30:48 marin_dimitrov
61 * v0.4.0
62 *
63 * Revision 1.3 2005/05/12 13:29:16 marin
64 * javadoc, header, footer, etc
65 *
66 */