blob: 639693ccf195f8e72976a5830701f334838b3c31 (
plain)
1
2
3
4
5
6
7
8
9
10
|
package grammar;
/* Author: Sorin Stancu-Mara
Date: 7 FEB 2007
Interface that all nodes implement to simplify some of the complex nodes
*/
public interface IParseTreeNode
{
public String toXML();
}
|