interfaces.IAbstractNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jsyntaxtree Show documentation
Show all versions of jsyntaxtree Show documentation
Syntax tree representation of the JASS language
The newest version!
package interfaces;
/**
* Represents the most basic abstract syntax tree entry possible
*/
public interface IAbstractNode {
/**
* Converts this node back to its original form.
* Indentation is not added.
*
* @return Original form of this node (code or string)
*/
String toString();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy