Changeset 20472
- Timestamp:
- 02/26/10 09:51:26 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/core/src/net/project/calendar/workingtime/WorkingTimeCalendarDateEntryHelper.java
r18888 r20472 183 183 } 184 184 185 p rivatevoid setNonWorkingTimeSelected() {185 public void setNonWorkingTimeSelected() { 186 186 this.selectedOption = NON_WORKING_TIME; 187 187 } … … 191 191 } 192 192 193 p rivatevoid setWorkingTimeSelected() {193 public void setWorkingTimeSelected() { 194 194 this.selectedOption = WORKING_TIME; 195 195 } … … 236 236 if (nextName.startsWith("timeControl_")) { 237 237 // We found a parameter controlling a time of form: 238 // <prefix>_<position> 238 // <prefix>_<position> 239 239 // where position 0..5 240 240 int position = Integer.valueOf(nextName.substring(nextName.indexOf('_') + 1)).intValue(); … … 499 499 } 500 500 501 /** 502 * @param isSingleDate the isSingleDate to set 503 */ 504 public void setSingleDate(boolean isSingleDate) { 505 this.isSingleDate = isSingleDate; 506 } 507 508 /** 509 * @param singleDate the singleDate to set 510 */ 511 public void setSingleDate(Date singleDate) { 512 this.singleDate = singleDate; 513 } 514 501 515 } trunk/core/src/net/project/calendar/workingtime/WorkingTimeEditHelper.java
r18397 r20472 113 113 * the time is set to null 114 114 */ 115 void setStartTime(int position, Date startTime) {115 public void setStartTime(int position, Date startTime) { 116 116 WorkingTimeEditor workingTime = (WorkingTimeEditor) this.workingTimes.get(position); 117 117 workingTime.setStartTime(makeTime(startTime)); … … 147 147 * the time is set to null 148 148 */ 149 void setEndTime(int position, Date endTime) {149 public void setEndTime(int position, Date endTime) { 150 150 WorkingTimeEditor workingTime = (WorkingTimeEditor) this.workingTimes.get(position); 151 151 Time time = makeTime(endTime);
