| 1 | |
package org.kuali.student.enrollment.uif.control; |
| 2 | |
|
| 3 | |
import org.kuali.rice.krad.uif.control.ControlBase; |
| 4 | |
import org.kuali.rice.krad.uif.element.Header; |
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | 0 | public class ScheduleCartControl extends ControlBase{ |
| 14 | |
private Header header; |
| 15 | |
private String removeText; |
| 16 | |
private String removeJsFunction; |
| 17 | |
private String scheduleId; |
| 18 | |
|
| 19 | |
public Header getHeader() { |
| 20 | 0 | return header; |
| 21 | |
} |
| 22 | |
|
| 23 | |
public void setHeader(Header header) { |
| 24 | 0 | this.header = header; |
| 25 | 0 | } |
| 26 | |
|
| 27 | |
public String getScheduleId() { |
| 28 | 0 | return scheduleId; |
| 29 | |
} |
| 30 | |
|
| 31 | |
public void setScheduleId(String scheduleId) { |
| 32 | 0 | this.scheduleId = scheduleId; |
| 33 | 0 | } |
| 34 | |
|
| 35 | |
public String getRemoveText() { |
| 36 | 0 | return removeText; |
| 37 | |
} |
| 38 | |
|
| 39 | |
public void setRemoveText(String removeText) { |
| 40 | 0 | this.removeText = removeText; |
| 41 | 0 | } |
| 42 | |
|
| 43 | |
public String getRemoveJsFunction() { |
| 44 | 0 | return removeJsFunction; |
| 45 | |
} |
| 46 | |
|
| 47 | |
public void setRemoveJsFunction(String removeJsFunction) { |
| 48 | 0 | this.removeJsFunction = removeJsFunction; |
| 49 | 0 | } |
| 50 | |
} |