package de.fuberlin.commons.parser; /** * Generic wrapper for terminal and non-terminal symbols */ public interface ISymbol { /** * Get the ID of this Symbol * * @return */ public String getName(); }