001package org.maltparser.core.symbol; 002 003import org.maltparser.core.exception.MaltChainedException; 004 005public interface TableHandler { 006 public Table getSymbolTable(String tableName) throws MaltChainedException; 007 public Table addSymbolTable(String tableName) throws MaltChainedException; 008}