summaryrefslogtreecommitdiffstats
path: root/src/main/java/com/cmcc/simulator/xml/Instance.java
blob: c6e0f755c6182b6dd293cd19e15a5085251d8731 (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 java.util.List;

import javax.xml.bind.annotation.XmlElement;

public class Instance {
	List<V> vs;
	List<CV> cvs;

	public Instance() {
		super();
	}

	public Instance(List<V> vs, List<CV> cvs) {
		super();
		this.vs = vs;
		this.cvs = cvs;
	}

	@XmlElement(name="V") 
	public List<V> getVs() {
		return vs;
	}

	public void setVs(List<V> vs) {
		this.vs = vs;
	}

	@XmlElement(name="CV") 
	public List<CV> getCvs() {
		return cvs;
	}

	public void setCvs(List<CV> cvs) {
		this.cvs = cvs;
	}

}