Project

General

Profile

1
package eu.dnetlib.data.search.utils.vocabulary;
2

    
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
}
(5-5/15)