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

import org.maltparser.core.exception.MaltChainedException;

/**
*
* @author Johan Hall
* @since 1.1
**/
public interface MultipleDecision extends GuideDecision {
	public SingleDecision getSingleDecision(int decisionIndex) throws MaltChainedException;
}