View Javadoc

1   /*
2    * $Id: CatchAll.java,v 1.1 2004/12/15 14:18:11 patforna Exp $
3    *
4    * Copyright (c) 2004 Patric Fornasier, Pawel Kowalski
5    * Berne University of Applied Sciences
6    * School of Engineering and Information Technology
7    * All rights reserved.
8    */
9   
10  package bexee.model.activity;
11  
12  /***
13   * Representation of a Catch BPEL element.
14   * 
15   * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:11 $
16   * @author Patric Fornasier
17   * @author Pawel Kowalski
18   */
19  public interface CatchAll extends Activity {
20  
21      //***************************************************/
22      // xml elements
23      //***************************************************/
24  
25      /***
26       * Set the root activity of this Catch element.
27       * 
28       * @param activity
29       */
30      public void setActivity(Activity activity);
31  
32      /***
33       * Get the root activity of this Catch element.
34       * 
35       * @return root activity
36       */
37      public Activity getActivity();
38  
39  }