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

import org.maltparser.core.exception.MaltChainedException;

public interface Table {
	public int addSymbol(String symbol) throws MaltChainedException;
	public String getSymbolCodeToString(int code) throws MaltChainedException;
	public int getSymbolStringToCode(String symbol) throws MaltChainedException;
	public String getName();
	public int size();
}