001 package org.maltparser.parser.history.container; 002 003 import org.maltparser.core.exception.MaltChainedException; 004 import org.maltparser.core.symbol.Table; 005 /** 006 * 007 * @author Johan Hall 008 * @since 1.1 009 **/ 010 public interface DecisionPropertyTable { 011 public boolean continueWithNextDecision(int code) throws MaltChainedException; 012 public boolean continueWithNextDecision(String symbol) throws MaltChainedException; 013 public Table getTableForNextDecision(int code) throws MaltChainedException; 014 public Table getTableForNextDecision(String symbol) throws MaltChainedException; 015 }