View Javadoc
1 package org.smartcomps.twister.engine.priv.core.definition.impl; 2 3 import org.smartcomps.twister.engine.priv.core.definition.Assign; 4 import org.smartcomps.twister.engine.priv.core.definition.Assignment; 5 6 import java.util.ArrayList; 7 import java.util.List; 8 9 /*** 10 * Persistent implementation of the Assign interface. 11 * @see org.smartcomps.twister.engine.priv.core.definition.Assign 12 */ 13 public class AssignImpl extends BasicActivityImpl implements Assign { 14 15 private List assignments = new ArrayList(); 16 17 public List getAssignments() { 18 return assignments; 19 } 20 21 public void setAssignments(List assignments) { 22 this.assignments = assignments; 23 } 24 25 public void addAssignment(Assignment assignment) { 26 getAssignments().add(assignment); 27 } 28 }

This page was automatically generated by Maven