Project

General

Profile

1 17818 dimitra.ke
package eu.dnetlib.data.search.utils.vocabulary;
2 17557 katerina.i
3
public class LocalVocabulary extends Vocabulary{
4
5
	/** the name of the vocabulary in classpath */
6
	private final String fileName;
7
8
	public LocalVocabulary(String name, String filename) {
9
		super(name);
10
		this.fileName = filename;
11
	}
12
13
	public String getFileName() {
14
		return fileName;
15
	}
16
}