001package org.maltparser.core.feature; 002 003import org.maltparser.core.exception.MaltChainedException; 004import org.maltparser.core.feature.function.Function; 005 006public interface AbstractFeatureFactory { 007 public Function makeFunction(String subFunctionName, FeatureRegistry registry) throws MaltChainedException; 008}