1 /*
2 wsmo4j extension - a Choreography 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
19 package org.wsmo.service.rule;
20
21 import org.omwg.logicalexpression.*;
22
23 /**
24 * TODO: Improve the javadoc description
25 * Extends CompoundFact and Relation Instance since only updates on
26 * relation instances are allowed.
27 *
28 * @author James Scicluna
29 * @author Thomas Haselwanter
30 * @author Vassil Momtchev
31 *
32 * Created on 02-Feb-2006
33 * Committed by $Author: vassil_momtchev $
34 *
35 * $Source$,
36 * @version $Revision: 1844 $ $Date: 2006-10-24 17:11:48 +0300 (Tue, 24 Oct 2006) $
37 */
38
39 public interface RelationFact extends CompoundFact {
40
41 /**
42 */
43 public Atom getAtom();
44
45 /**
46 */
47 public void setAtom(Atom atom);
48
49 }
50
51 /*
52 * $Log$
53 * Revision 1.1 2006/10/24 14:11:48 vassil_momtchev
54 * choreography/orchestration rules refactored. different types where appropriate now supported
55 *
56 * Revision 1.3 2006/04/17 07:44:28 vassil_momtchev
57 * association level between RelationFact and Atom decreased from inheritance to containement
58 *
59 * Revision 1.2 2006/02/10 15:30:35 vassil_momtchev
60 * isEmpty method shifted from MoleculeFact to CompoundFact; log footer added
61 *
62 */