cdc.applic.expressions.ast.PropertyNode 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;
public interface PropertyNode extends NamedNode, ParsingNode, SortableNode, RenamableNode {
/**
* @return {@code true} if this is a negative node.
*/
public boolean isNegative();
/**
* @return The node with the negated definition.
*/
public PropertyNode negate();
@Override
default String getSortingText() {
return getName().getSortingLiteral();
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy