The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
package org.maltparser.core.feature;

import org.maltparser.core.config.ConfigurationRegistry;
import org.maltparser.core.exception.MaltChainedException;
import org.maltparser.core.feature.function.Function;

public interface AbstractFeatureFactory {
	public Function makeFunction(String subFunctionName) throws MaltChainedException;
}