1
2
3
4
5
6
7
8
9 package bexee.model.activity;
10
11 import bexee.model.elements.Copy;
12
13 /***
14 * Representation of a BPEL Assign activity.
15 *
16 * @version $Revision: 1.1 $, $Date: 2004/12/15 14:18:11 $
17 * @author Patric Fornasier
18 * @author Pawel Kowalski
19 */
20 public interface Assign extends Activity {
21
22 /***
23 * Set the copy element of this assign.
24 *
25 * @param copy
26 */
27 public void setCopy(Copy copy);
28
29 /***
30 * Get the copy element of this assign.
31 *
32 * @return
33 */
34 public Copy getCopy();
35
36 }