Project

General

Profile

1
package eu.dnetlib.data.transform.xml2;
2

    
3
import java.util.Map;
4

    
5
public class Node {
6

    
7
	private String name;
8

    
9
	private String textValue;
10

    
11
	private Map<String, String> attributes;
12

    
13
	public String getTextValue() {
14
		return textValue;
15
	}
16

    
17
	public void setTextValue(final String textValue) {
18
		this.textValue = textValue;
19
	}
20

    
21
	public Map<String, String> getAttributes() {
22
		return attributes;
23
	}
24

    
25
	public void setAttributes(final Map<String, String> attributes) {
26
		this.attributes = attributes;
27
	}
28

    
29
	public String getName() {
30
		return name;
31
	}
32

    
33
	public void setName(final String name) {
34
		this.name = name;
35
	}
36
}
(5-5/11)