All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.maltparser.core.config.ConfigurationRegistry Maven / Gradle / Ivy

Go to download

MaltParser is a system for data-driven dependency parsing, which can be used to induce a parsing model from treebank data and to parse new data using an induced model.

There is a newer version: 1.9.2
Show newest version
package org.maltparser.core.config;

import java.util.HashMap;
/**
*
* @author Johan Hall
**/
public class ConfigurationRegistry extends HashMap, Object> {
	public final static long serialVersionUID = 3256444702936019250L;
	
	public ConfigurationRegistry() {
		super();
	}

	@Override
	public Object get(Object key) {
		return super.get(key);
	}

	@Override
	public Object put(Class key, Object value) {
		return super.put(key, value);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy