1   /**
2    * 
3    */
4   package eu.fbk.dkm.pikes.resources.reader;
5   
6   public class DataTextNode extends DataNode {
7   	public String text;
8   	DataTextNode(String text) {
9   		this.text = text;
10  	}
11  
12  	public String toString() {
13  		return "[TEXT: " + text + "]";
14  	}
15  
16  }