summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/cmcc/simulator/xml/N.java
blob: 0fe99788f05d46c6720f2d7e22255160d865e140 (plain)
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
package com.cmcc.simulator.xml;

import javax.xml.bind.annotation.XmlAttribute;
import javax.xml.bind.annotation.XmlValue;

public class N {
	String i;
	String value;

	public N() {
		super();
		// TODO Auto-generated constructor stub
	}

	public N(String i, String value) {
		super();
		this.i = i;
		this.value = value;
	}

	@XmlAttribute(name = "i")
	public String getI() {
		return i;
	}

	public void setI(String i) {
		this.i = i;
	}

	public String getValue() {
		return value;
	}

	@XmlValue
	public void setValue(String value) {
		this.value = value;
	}
	
}