1 /* 2 * Created on 4 mai 2004 3 * 4 * To change the template for this generated file go to 5 * Window>Preferences>Java>Code Generation>Code and Comments 6 */ 7 package mc.formgenerator.bonita; 8 9 import java.util.HashMap; 10 11 /** 12 * @author delfourr 13 * 14 */ 15 public class DataProject extends DataProcess { 16 17 18 19 /** 20 * Default class constructor. 21 */ 22 public DataProject() { 23 24 } 25 26 27 /** 28 * Class constructor with the attributes setting. 29 * @param name String : the process name of the new instance. 30 * @param table HashMap: the process properties of the new instance. 31 */ 32 public DataProject(String name, HashMap table) { 33 34 //set the attributes values 35 this.setProcessName(name); 36 this.setProcessProperties(table); 37 } 38 } 39