-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathParameter.java
More file actions
40 lines (32 loc) · 832 Bytes
/
Parameter.java
File metadata and controls
40 lines (32 loc) · 832 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
package javaxt.utils.src;
import javaxt.json.JSONObject;
public class Parameter {
private String name;
private String type;
private String description;
public Parameter(String name){
this.name = name;
}
public String getName(){
return name;
}
public void setType(String type){
this.type = type;
}
public String getType(){
return type;
}
public void setDescription(String description){
this.description = description;
}
public String getDescription(){
return description;
}
public JSONObject toJson(){
JSONObject json = new JSONObject();
json.set("name", name);
json.set("type", type);
json.set("description", description);
return json;
}
}