01: /*
02: * Created on 6 juin 2005
03: * SalomeTMF is a Test Managment Framework
04: * Copyright (C) 2005 France Telecom R&D
05: *
06: * This library is free software; you can redistribute it and/or
07: * modify it under the terms of the GNU Lesser General Public
08: * License as published by the Free Software Foundation; either
09: * version 2 of the License, or (at your option) any later version.
10: *
11: * This library is distributed in the hope that it will be useful,
12: * but WITHOUT ANY WARRANTY; without even the implied warranty of
13: * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14: * Lesser General Public License for more details.
15: *
16: * You should have received a copy of the GNU Lesser General Public
17: * License along with this library; if not, write to the Free Software
18: * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
19: *
20: * Contact: mikael.marche@rd.francetelecom.com
21: */
22: package org.objectweb.salome_tmf.api.wrapper;
23:
24: public class DataWrapper {
25: String name;
26: String description;
27: int idBDD;
28: int order;
29:
30: /**
31: * @return Returns the description.
32: */
33: public String getDescription() {
34: return description;
35: }
36:
37: /**
38: * @param description The description to set.
39: */
40: public void setDescription(String description) {
41: this .description = description;
42: }
43:
44: /**
45: * @return Returns the idBDD.
46: */
47: public int getIdBDD() {
48: return idBDD;
49: }
50:
51: /**
52: * @param idBDD The idBDD to set.
53: */
54: public void setIdBDD(int idBDD) {
55: this .idBDD = idBDD;
56: }
57:
58: /**
59: * @return Returns the name.
60: */
61: public String getName() {
62: return name;
63: }
64:
65: /**
66: * @param name The name to set.
67: */
68: public void setName(String name) {
69: this .name = name;
70: }
71:
72: /**
73: * @return Returns the order.
74: */
75: public int getOrder() {
76: return order;
77: }
78:
79: /**
80: * @param order The order to set.
81: */
82: public void setOrder(int order) {
83: this.order = order;
84: }
85: }
|