1   package eu.fbk.knowledgestore.populator.naf;
2   
3   import java.util.Collection;
4   import java.util.Hashtable;
5   
6   import eu.fbk.knowledgestore.data.Record;
7   
8   public class KSPresentation {
9   	private String news;
10      private String naf_file_path;
11  	private Hashtable<String, Record> mentions;
12  	private Record naf;
13  	private Record newsResource;
14  	private statistics stats;
15  	private boolean foundInKS = false;
16      
17      public boolean isFoundInKS() {
18  		return foundInKS;
19  	}
20  
21  
22  	public void setFoundInKS(boolean foundInKS) {
23  		this.foundInKS = foundInKS;
24  	}
25  
26  
27  	public statistics getStats() {
28          return stats;
29      }
30  
31      
32      public void setStats(statistics stats) {
33          this.stats = stats;
34      }
35  
36  
37  	public Record getNaf() {
38  		return naf;
39  	}
40  	public void setNaf(Record naf) {
41  		this.naf = naf;
42  	}
43  	public Record getNewsResource() {
44  		return newsResource;
45  	}
46  	public void setNewsResource(Record newsResource) {
47  		this.newsResource = newsResource;
48  	}
49  	public String getNews() {
50  		return news;
51  	}
52  	public void setNews(String news) {
53  		this.news = news;
54  	}
55  	public String getNaf_file_path() {
56  		return naf_file_path;
57  	}
58  	public void setNaf_file_path(String naf_file_path) {
59  		this.naf_file_path = naf_file_path;
60  	}
61  	public Hashtable<String, Record> getMentions() {
62  		return mentions;
63  	}
64  	public void setMentions(Hashtable<String, Record> mentionListHash) {
65  		this.mentions = mentionListHash;
66  	}
67  }