1 package org.smartcomps.twister.engine.priv.core.definition;
2
3 import java.util.List;
4
5 /***
6 * An assign is a basic activity used to copy data from one
7 * variable to another or to construct or insert new data
8 * with an expression. An assign is just a container for
9 * Assignment objects that describe the real assignment.
10 */
11 public interface Assign extends BasicActivity {
12
13 public List getAssignments();
14 public void setAssignments(List assignments);
15 public void addAssignment(Assignment assignment);
16 }
This page was automatically generated by Maven