1 /* 2 wsmo4j - a WSMO API and Reference Implementation 3 4 Copyright (c) 2004-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.ontology; 19 20 21 /** 22 * Interface or class description 23 * 24 * <pre> 25 * Created on Sep 5, 2005 26 * Committed by $Author$ 27 * </pre> 28 * 29 * @author Holger Lausen (holger.lausen@deri.org) 30 * 31 * @version $Revision$ $Date$ 32 */ 33 public interface SimpleDataValue 34 extends DataValue { 35 36 } 37 /* 38 * $Log$ 39 * Revision 1.2 2005/09/09 10:52:20 marin_dimitrov 40 * formatting 41 * 42 * Revision 1.1 2005/09/06 18:23:53 holgerlausen 43 * removed createSimpleTypes from LogicalExpressionFactory 44 * splited DataValue into simple and complex value classes 45 * removed explicit classes for simple datavalues (now all org.omwg.ontology.SimpledataValue) 46 * adopted Term visitor to new data structure 47 * 48 */