1 package org.enhydra.pim.business.api; 2 3 8 9 public interface TaskI extends BasePimInterface{ 10 11 17 public void setAlarm_note(String _alarm_note); 18 19 25 public String getAlarm_note(); 26 27 33 public void setDate_start(java.sql.Date _date_start); 34 35 41 public java.sql.Date getDate_start(); 42 43 49 public void setDate_stop(java.sql.Date _date_stop); 50 51 57 public java.sql.Date getDate_stop(); 58 59 65 public void setTime_start(java.sql.Time _time_start); 66 67 73 public java.sql.Time getTime_start(); 74 75 81 public void setTime_stop(java.sql.Time _time_stop); 82 83 89 public java.sql.Time getTime_stop(); 90 91 97 public void setAlarm(boolean _alarm); 98 99 105 public boolean getAlarm(); 106 107 113 public void setPriority(int _priority); 114 115 121 public int getPriority(); 122 123 129 public void setCompletion(int _completion); 130 131 137 public int getCompletion(); 138 139 145 public void setRepaeat_type(int _repaeat_type); 146 147 153 public int getRepaeat_type(); 154 155 161 public void setRepaeat_count(int _repaeat_count); 162 163 169 public int getRepaeat_count(); 170 171 177 public void setNote(String _note); 178 179 185 public String getNote(); 186 187 193 public void setOwner(OwnerI _owner); 194 195 202 public OwnerI getOwner(); 203 204 205 206 } | Popular Tags |