]> git.argeo.org Git - gpl/argeo-slc.git/blob - RefValueChoice.java
6803a8478e3f9762433b9a6cab20076e09b3a671
[gpl/argeo-slc.git] / RefValueChoice.java
1 package org.argeo.slc.core.execution;
2
3 public class RefValueChoice {
4 private String name;
5 private String description;
6
7 public RefValueChoice() {
8 }
9
10 public RefValueChoice(String name, String description) {
11 this.name = name;
12 this.description = description;
13 }
14
15 public String getName() {
16 return name;
17 }
18
19 public void setName(String name) {
20 this.name = name;
21 }
22
23 public String getDescription() {
24 return description;
25 }
26
27 public void setDescription(String description) {
28 this.description = description;
29 }
30
31 }