View Javadoc

1   /* 
2   * Licence (L77741), Version 1.0 (the "Licence"); you may not use this file 
3   * except in compliance with the Licence. You may obtain a copy of the Licence
4   * from $ZEUS_INSTALL/licence.html or alternatively from
5   * http://www.labs.bt.com/projects/agents/zeus/licence.htm
6   * 
7   * Except as stated in Clause 7 of the Licence, software distributed under the
8   * Licence is distributed WITHOUT WARRANTY OF ANY KIND, either express or 
9   * implied. See the Licence for the specific language governing rights and 
10  * limitations under the Licence.
11  * 
12  * The Original Code is within the package zeus.*.
13  * The Initial Developer of the Original Code is British Telecommunications
14  * public limited company, whose registered office is at 81 Newgate Street, 
15  * London, EC1A 7AJ, England. Portions created by British Telecommunications 
16  * public limited company are Copyright 1996-9. All Rights Reserved.
17  * 
18  * THIS NOTICE MUST BE INCLUDED ON ANY COPY OF THIS FILE
19  */
20  
21  
22  package zeus.actors;
23  
24  import zeus.actors.AgentContext;
25  
26  public interface TaskExternal {
27      
28    public abstract void exec (TaskContext context); 
29      
30  }