View Javadoc

1   /******************************************************************
2   JADE - Java Agent DEvelopment Framework is a framework to develop
3   multi-agent systems in compliance with the FIPA specifications.
4   Copyright (C) 2000 CSELT S.p.A. 
5   
6   The updating of this file to JADE 2.0 has been partially supported by the IST-1999-10211 LEAP Project
7   
8   GNU Lesser General Public License
9   
10  This library is free software; you can redistribute it and/or
11  modify it under the terms of the GNU Lesser General Public
12  License as published by the Free Software Foundation, 
13  version 2.1 of the License. 
14  
15  This library is distributed in the hope that it will be useful,
16  but WITHOUT ANY WARRANTY; without even the implied warranty of
17  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
18  Lesser General Public License for more details.
19  
20  You should have received a copy of the GNU Lesser General Public
21  License along with this library; if not, write to the
22  Free Software Foundation, Inc., 59 Temple Place - Suite 330,
23  Boston, MA  02111-1307, USA.
24  *****************************************************************/
25  
26  
27  package sl;
28  
29  /***
30     @author Fabio Bellifemine - CSELT S.p.A.
31     @version $Date: 2003/10/09 13:00:37 $ $Revision: 1.1.1.1 $
32  */
33  
34  /***
35     This class represents the done predicate ontological role i.e. the 
36     fact that an action has been performed by an agent
37  */
38  public class DonePredicate {
39  	Action s;
40  	
41  	
42  	/***
43   	  This method sets the action expression indicating the action that 
44   	  has been performed and the agent who performed it.
45   	  @see jade.onto.basic.Action
46  	*/
47  	public void set_0(Action a){s=a;}
48  	
49  	/***
50   	  This method gets the action expression indicating the action that 
51   	  has been performed and the agent who performed it.
52   	  @see jade.onto.basic.Action
53  	*/
54  	public Action get_0() {return s;}
55  }