admin | bae64d8 | 2013-08-01 10:50:15 -0700 | [diff] [blame] | 1 | /* |
| 2 | * To change this template, choose Tools | Templates |
| 3 | * and open the template in the editor. |
| 4 | */ |
| 5 | package tai_ofa; |
| 6 | |
| 7 | import 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 | */ |
| 28 | public class TestSelectStepTable { |
| 29 | public Label testStepId; |
| 30 | public Label testStepName; |
| 31 | public Label testStepStatus; |
| 32 | |
| 33 | public TestSelectStepTable() { |
| 34 | |
| 35 | } |
| 36 | public TestSelectStepTable(Label stepId, Label stepName) { |
| 37 | |
| 38 | this.testStepId = stepId; |
| 39 | this.testStepName = stepName; |
| 40 | |
| 41 | |
| 42 | } |
| 43 | |
| 44 | |
| 45 | public Label getTestStepId() { |
| 46 | return testStepId; |
| 47 | } |
| 48 | public void setTestStepId(Label newStepId) { |
| 49 | testStepId = newStepId; |
| 50 | } |
| 51 | public Label getTestStepName() { |
| 52 | return testStepName; |
| 53 | } |
| 54 | public void setTestStepName(Label newStepName) { |
| 55 | testStepName = newStepName; |
| 56 | } |
| 57 | |
| 58 | } |