blob: 5ed908ba81745f0a25f102e5e62cc8fde5d3f972 [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 */
27
28public class FinalSummaryTable {
29 public Label summaryItem;
30 public Label information;
31
32 public FinalSummaryTable() {
33
34 }
35 public FinalSummaryTable(Label summaryItem, Label information) {
36
37 this.summaryItem = summaryItem;
38 this.information = information;
39
40 }
41
42
43 public Label getSummaryItem() {
44 return summaryItem;
45 }
46 public void setSummaryItem(Label newSummaryItem) {
47 summaryItem = newSummaryItem;
48 }
49 public Label getInformation() {
50 return information;
51 }
52 public void setInformation(Label newInformation) {
53 information = newInformation;
54 }
55
56}
57