1
2
3
4
5
6 package net.sf.navigator.displayer;
7
8 import java.io.Serializable;
9
10
11 /**
12 *
13 * @author ssayles
14 * @version
15 */
16 public class MenuDisplayerMapping implements Serializable {
17
18
19 /** Holds value of property name. */
20 private String name;
21
22 /** Holds value of property type. */
23 private String type;
24
25 /** Holds value of property config. */
26 private String config;
27
28
29
30 /** Getter for property name.
31 * @return Value of property name.
32 */
33 public String getName() {
34 return name;
35 }
36
37 /** Setter for property name.
38 * @param name New value of property name.
39 */
40 public void setName(String name) {
41 this.name = name;
42 }
43
44 /** Getter for property type.
45 * @return Value of property type.
46 */
47 public String getType() {
48 return type;
49 }
50
51 /** Setter for property type.
52 * @param type New value of property type.
53 */
54 public void setType(String type) {
55 this.type = type;
56 }
57
58 /** Getter for property config.
59 * @return Value of property config.
60 */
61 public String getConfig() {
62 return config;
63 }
64
65 /** Setter for property config.
66 * @param config New value of property config.
67 */
68 public void setConfig(String config) {
69 this.config = config;
70 }
71 }