1 17 18 19 20 package org.apache.fop.plan; 21 22 import java.util.Date ; 23 24 public class ActionInfo { 25 26 public static final int TASK = 1; 27 public static final int MILESTONE = 2; 28 public static final int GROUPING = 3; 29 30 private Date startDate; 31 private Date endDate; 32 private String owner; 33 private String label; 34 private int type = TASK; 35 private String dependant = ""; 36 37 public void setType(int t) { 38 type = t; 39 } 40 41 public int getType() { 42 return type; 43 } 44 45 public void setLabel(String str) { 46 label = str; 47 } 48 49 public void setOwner(String str) { 50 owner = str; 51 } 52 53 public void setStartDate(Date sd) { 54 startDate = sd; 55 if (endDate == null) { 56 endDate = startDate; 57 } 58 } 59 60 public void setEndDate(Date ed) { 61 endDate = ed; 62 } 63 64 public String getLabel() { 65 return label; 66 } 67 68 public String getOwner() { 69 return owner; 70 } 71 72 public Date getStartDate() { 73 return startDate; 74 } 75 76 public Date getEndDate() { 77 return endDate; 78 } 79 80 } 81 | Popular Tags |