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

cdc.applic.expressions.ast.SortableNode Maven / Gradle / Ivy

The newest version!
package cdc.applic.expressions.ast;

/**
 * Base interface of nodes that can be sorted.
 * 

* This corresponds to all {@link ParsingNode}s that are also {@link LeafNode}s. * * @author Damien Carbonne */ public interface SortableNode extends Node { /** * @return The text that must be used to sort nodes.
* For a named nodes, it should be the node name. */ public String getSortingText(); }





© 2015 - 2024 Weber Informatics LLC | Privacy Policy