1 /* 2 wsmo4j - a WSMO API and Reference Implementation 3 4 Copyright (c) 2005 University of Innsbruck, Austria 5 2005 National University of Ireland, Galway 6 7 This library is free software; you can redistribute it and/or modify it under 8 the terms of the GNU Lesser General Public License as published by the Free 9 Software Foundation; either version 2.1 of the License, or (at your option) 10 any later version. 11 This library is distributed in the hope that it will be useful, but WITHOUT 12 ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS 13 FOR A PARTICULAR PURPOSE. See the GNU Lesser General Public License for more 14 details. 15 You should have received a copy of the GNU Lesser General Public License along 16 with this library; if not, write to the Free Software Foundation, Inc., 17 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA 18 */ 19 20 package org.omwg.logicalexpression; 21 22 23 /** 24 * This interface represents specific kind of <code>Binary</code>. 25 * A equation whose operator is equals. 26 * 27 * @author DERI Innsbruck, reto.krummenacher@deri.org 28 * @author DERI Innsbruck, holger.lausen@deri.org 29 * @author DERI Innsbruck, thomas.haselwanter@deri.org 30 * @version $Revision$ $Date$ 31 */ 32 public interface Equivalence 33 extends Binary { 34 35 } 36 /* 37 * $Log$ 38 * Revision 1.3 2005/09/09 11:53:21 holgerlausen 39 * fixed exidential GPL header to correct LGPL header 40 * 41 * Revision 1.2 2005/09/09 11:12:12 marin_dimitrov 42 * formatting 43 * 44 * Revision 1.1 2005/09/07 13:13:28 holgerlausen 45 * Equation -> Equivalence (the former sounds more like an atom (a=b)) 46 * 47 */