cdc.applic.expressions.ast.AtomNode 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;
/**
* Marking interface of nodes that are atoms.
*
* Those are the only nodes that can be used to create sentences.
* Nodes that are not atoms must be transformed into atoms to create sentences.
*/
public interface AtomNode extends LeafNode {
// Ignore
}