blob: ead5d85fd14be969088b6f6ca3c0e8dee7aa8c44 [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.Label;
8
9/**
10 *
11 * @author Raghav Kashyap (raghavkashyap@paxterrasolutions.com)
12
13 * TestON is free software: you can redistribute it and/or modify
14 * it under the terms of the GNU General Public License as published by
15 * the Free Software Foundation, either version 2 of the License, or
16 * (at your option) any later version.
17
18 * TestON is distributed in the hope that it will be useful,
19 * but WITHOUT ANY WARRANTY; without even the implied warranty of
20 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
21 * GNU General Public License for more details.
22
23 * You should have received a copy of the GNU General Public License
24 * along with TestON. If not, see <http://www.gnu.org/licenses/>.
25
26 */
27public class StepTable {
28 public Label testStepId;
29 public Label testStepName;
30 public Label testStepStatus;
31
32 public StepTable() {
33
34 }
35 public StepTable(Label stepId, Label stepName,Label status) {
36
37 this.testStepId = stepId;
38 this.testStepName = stepName;
39 this.testStepStatus = status;
40
41 }
42
43
44 public Label getTestStepId() {
45 return testStepId;
46 }
47 public void setTestStepId(Label newStepId) {
48 testStepId = newStepId;
49 }
50 public Label getTestStepName() {
51 return testStepName;
52 }
53 public void setTestCaseName(Label newStepName) {
54 testStepName = newStepName;
55 }
56 public Label getTestStepStatus() {
57 return testStepStatus;
58 }
59 public void setTestCaseStatus(Label newStepStatus) {
60 testStepStatus = newStepStatus;
61 }
62
63}