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