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