All Downloads are FREE. Search and download functionalities are using the official Maven repository.

interfaces.IAbstractNode Maven / Gradle / Ivy

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