1
2
3
4
5
6
7
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
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 }