1 /* 2 wsmo4j - a WSMO API and Reference Implementation 3 4 Copyright (c) 2005, University of Innsbruck, Austria 5 6 This library is free software; you can redistribute it and/or modify it under 7 the terms of the GNU Lesser General Public License as published by the Free 8 Software Foundation; either version 2.1 of the License, or (at your option) 9 any later version. 10 This library is distributed in the hope that it will be useful, but WITHOUT 11 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 12 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 13 details. 14 You should have received a copy of the GNU Lesser General Public License along 15 with this library; if not, write to the Free Software Foundation, Inc., 16 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 17 */ 18 package org.omwg.logicalexpression; 19 20 21 /** 22 * This interface represents an atomic expression. Atomic expressions are without any 23 * restrictions molecules and atoms (predicates) 24 * 25 * @author DERI Innsbruck, reto.krummenacher@deri.org 26 * @version $Revision: 882 $ $Date: 2005-09-09 14:58:21 +0300 (Fri, 09 Sep 2005) $ 27 * @see org.omwg.logicalexpression.LogicalExpression 28 * @see org.omwg.logicalexpression.Atom 29 * @see org.omwg.logicalexpression.Molecule 30 */ 31 public interface AtomicExpression 32 extends LogicalExpression { 33 } 34 /* 35 * $Log$ 36 * Revision 1.3 2005/09/09 11:58:19 holgerlausen 37 * fixed header logexp no longer extension 38 * 39 * Revision 1.2 2005/09/09 11:12:12 marin_dimitrov 40 * formatting 41 * 42 * Revision 1.1 2005/09/02 13:32:43 ohamano 43 * move logicalexpression packages from ext to core 44 * move tests from logicalexpression.test to test module 45 * 46 * Revision 1.4 2005/06/22 13:32:01 ohamano 47 * change header 48 * 49 * Revision 1.3 2005/06/20 08:30:03 holgerlausen 50 * formating 51 * 52 * Revision 1.2 2005/06/18 14:06:10 holgerlausen 53 * added local LEFactory, updated javadoc, refactored LEVariable > Variable etc. parse(String) for LEFactory is running now 54 * 55 * Revision 1.1 2005/06/16 13:55:23 ohamano 56 * first import 57 */