cdc.applic.expressions.ast.SortableNode Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of cdc-applic-expressions Show documentation
Show all versions of cdc-applic-expressions Show documentation
Applicabilities Expressions.
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