blob: 11a6f498bd59a5ded854f4f47a71316d5e982d5a [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 TestCaseSelectionTable {
29
30 public CheckBox testCaseIdCheck;
31 public Label testCaseId;
32 public Label testCaseName;
33 public TestCaseSelectionTable() {
34
35 }
36 public TestCaseSelectionTable(CheckBox idCheck, Label caseId, Label caseName) {
37 this.testCaseIdCheck = idCheck;
38 this.testCaseId = caseId;
39 this.testCaseName = caseName;
40 }
41
42 public CheckBox getTestCaseCheckBox() {
43 return testCaseIdCheck;
44 }
45 public void setTestCaseCheckBox(CheckBox newCheck) {
46 testCaseIdCheck = newCheck;
47 }
48
49 public Label getTestCaseId() {
50 return testCaseId;
51 }
52 public void setTestCaseId(Label newCaseId) {
53 testCaseId = newCaseId;
54 }
55 public Label getTestCaseName() {
56 return testCaseName;
57 }
58 public void setTestCaseName(Label newCaseName) {
59 testCaseName = newCaseName;
60 }
61}