View Javadoc

1   /*
2    wsmo4j - a WSMO API and Reference Implementation
3   
4    Copyright (c) 2004-2005, OntoText Lab. / SIRMA
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 ComplexDataValue
34          extends DataValue {
35  
36      SimpleDataValue getArgumentValue(byte pos);
37  
38      int getArity();
39  }
40  /*
41   * $Log$
42   * Revision 1.2  2005/09/09 10:52:20  marin_dimitrov
43   * formatting
44   *
45   * Revision 1.1  2005/09/06 18:23:53  holgerlausen
46   * removed createSimpleTypes from LogicalExpressionFactory
47   * splited DataValue into simple and complex value classes
48   * removed explicit classes for simple datavalues (now all org.omwg.ontology.SimpledataValue)
49   * adopted Term visitor to new data structure
50   *
51   */