commit | author | age
|
4b8725
|
1 |
/* |
U |
2 |
Transit - Remote procedure calls made simple |
|
3 |
Copyright (c) 2012 Ulrich Hilger |
|
4 |
|
|
5 |
This program is free software: you can redistribute it and/or modify |
|
6 |
it under the terms of the GNU Affero General Public License as published by |
|
7 |
the Free Software Foundation, either version 3 of the License, or |
|
8 |
(at your option) any later version. |
|
9 |
|
|
10 |
This program 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 |
|
13 |
GNU Affero General Public License for more details. |
|
14 |
|
|
15 |
You should have received a copy of the GNU Affero General Public License |
|
16 |
along with this program. If not, see <http://www.gnu.org/licenses/>. |
|
17 |
*/ |
|
18 |
|
|
19 |
package de.uhilger.transit.test; |
|
20 |
|
|
21 |
/** |
|
22 |
* Eine Klasse zum Testen der Klassenbibliothek Transit |
|
23 |
* |
|
24 |
* @author Copyright (c) Ulrich Hilger, http://uhilger.de |
|
25 |
* @author Published under the terms and conditions of |
|
26 |
* the <a href="http://www.gnu.org/licenses/agpl-3.0" target="_blank">GNU Affero General Public License</a> |
|
27 |
* |
|
28 |
* @version 1, September 16, 2012 |
|
29 |
*/ |
|
30 |
public class TestDatenKlasse { |
|
31 |
|
|
32 |
private int id; |
|
33 |
private String name; |
|
34 |
private String text; |
|
35 |
|
|
36 |
public TestDatenKlasse() { |
|
37 |
super(); |
|
38 |
} |
|
39 |
|
|
40 |
public String getName() { |
|
41 |
return name; |
|
42 |
} |
|
43 |
|
|
44 |
public String getText() { |
|
45 |
return text; |
|
46 |
} |
|
47 |
|
|
48 |
public int getId() { |
|
49 |
return id; |
|
50 |
} |
|
51 |
|
|
52 |
public void setName(String name) { |
|
53 |
this.name = name; |
|
54 |
} |
|
55 |
|
|
56 |
public void setText(String text) { |
|
57 |
this.text = text; |
|
58 |
} |
|
59 |
|
|
60 |
public void setId(int id) { |
|
61 |
this.id = id; |
|
62 |
} |
|
63 |
|
|
64 |
} |