01: /*
02: * SalomeTMF is a Test Management Framework
03: * Copyright (C) 2005 France Telecom R&D
04: *
05: * This library is free software; you can redistribute it and/or
06: * modify it under the terms of the GNU Lesser General Public
07: * License as published by the Free Software Foundation; either
08: * version 2 of the License, or (at your option) any later version.
09: *
10: * This library is distributed in the hope that it will be useful,
11: * but WITHOUT ANY WARRANTY; without even the implied warranty of
12: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13: * Lesser General Public License for more details.
14: *
15: * You should have received a copy of the GNU Lesser General Public
16: * License along with this library; if not, write to the Free Software
17: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
18: *
19: * @author Fayçal SOUGRATI
20: *
21: * Contact: mikael.marche@rd.francetelecom.com
22: */
23:
24: package org.objectweb.salome_tmf.api.api2ihm.campTest;
25:
26: /**
27: * TestSuiteFamily : Classe qui définit un type formé par le triplet (test,suite,famille)
28: * INTERET : pour une campagne de test, permet de connaitre la suite et la famille d'un test, des tests
29: * differents pouvant avoir le meme nom, mais dans des suites ou familles differentes
30: */
31: public class TestSuiteFamily {
32: // Nom du test
33: String testName;
34: // Nom de la suite de test
35: String suiteName;
36: // Nom de la famille de test
37: String familyName;
38:
39: /**
40: * Constructeur
41: */
42: public TestSuiteFamily() {
43: testName = new String();
44: suiteName = new String();
45: familyName = new String();
46: }
47:
48: /**
49: * Selecteur pour le champ "familyName"
50: * @return
51: */
52: public String getFamilyName() {
53: return familyName;
54: }
55:
56: /**
57: * Selecteur pour le champ "suiteName"
58: * @return
59: */
60: public String getSuiteName() {
61: return suiteName;
62: }
63:
64: /**
65: * Selecteur pour le champ "testName"
66: * @return
67: */
68: public String getTestName() {
69: return testName;
70: }
71:
72: /**
73: * Accesseur pour le champ "familyName"
74: * @param family
75: */
76: public void setFamilyName(String family) {
77: familyName = family;
78: }
79:
80: /**
81: * Accesseur pour le champ "suiteName"
82: * @param suite
83: */
84: public void setSuiteName(String suite) {
85: suiteName = suite;
86: }
87:
88: /**
89: * Accesseur pour le champ "testName"
90: * @param string
91: */
92: public void setTestName(String test) {
93: testName = test;
94: }
95:
96: }
|