-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathOption.java
More file actions
28 lines (22 loc) · 825 Bytes
/
Option.java
File metadata and controls
28 lines (22 loc) · 825 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
package javaxt.webservices;
//******************************************************************************
//** Option Class
//******************************************************************************
/**
* Enter class description here
*
******************************************************************************/
public class Option {
private String name;
private String value;
//**************************************************************************
//** Constructor
//**************************************************************************
/** Creates a new instance of Option. */
public Option(String name, String value) {
this.name = name;
this.value = value;
}
public String getName(){return name;}
public String getValue(){return value;}
}