blob: 5c1b1a8f103c166673e8cb25402456f85554033b [file] [log] [blame]
adminbae64d82013-08-01 10:50:15 -07001/*
2 * To change this template, choose Tools | Templates
3 * and open the template in the editor.
4 */
5package tai_ofa;
6
7import javafx.scene.control.CheckBox;
8import javafx.scene.control.Label;
9
10/**
11 *
12 * @author Raghav Kashyap (raghavkashyap@paxterrasolutions.com)
13
14 * TestON is free software: you can redistribute it and/or modify
15 * it under the terms of the GNU General Public License as published by
16 * the Free Software Foundation, either version 2 of the License, or
17 * (at your option) any later version.
18
19 * TestON is distributed in the hope that it will be useful,
20 * but WITHOUT ANY WARRANTY; without even the implied warranty of
21 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22 * GNU General Public License for more details.
23
24 * You should have received a copy of the GNU General Public License
25 * along with TestON. If not, see <http://www.gnu.org/licenses/>.
26
27 */
28public class SummaryTable {
29 public Label testCaseId;
30 public Label testCaseName;
31 public Label testCaseStatus;
32 public Label testCaseStartTime;
33 public Label testCaseEndTime;
34 public SummaryTable() {
35
36 }
37 public SummaryTable(Label caseId, Label caseName,Label status,Label startTime, Label endTime) {
38
39 this.testCaseId = caseId;
40 this.testCaseName = caseName;
41 this.testCaseStatus = status;
42 this.testCaseStartTime =startTime;
43 this.testCaseEndTime = endTime;
44 }
45
46
47 public Label getTestCaseId() {
48 return testCaseId;
49 }
50 public void setTestCaseId(Label newCaseId) {
51 testCaseId = newCaseId;
52 }
53 public Label getTestCaseName() {
54 return testCaseName;
55 }
56 public void setTestCaseName(Label newCaseName) {
57 testCaseName = newCaseName;
58 }
59 public Label getTestCaseStatus() {
60 return testCaseStatus;
61 }
62 public void setTestCaseStatus(Label newCaseStatus) {
63 testCaseStatus = newCaseStatus;
64 }
65
66 public Label getTestCaseStartTime() {
67 return testCaseStartTime;
68 }
69 public void setTestCaseStartTime(Label newCaseStartTime) {
70 testCaseStartTime = newCaseStartTime;
71 }
72 public Label getTestCaseEndTime() {
73 return testCaseEndTime;
74 }
75 public void setTestCaseEndTime(Label newCaseEndTime) {
76 testCaseEndTime = newCaseEndTime;
77 }
78
79
80}