summaryrefslogtreecommitdiff
path: root/BJC-Utils2/src/main/java/bjc/utils/dice/ast/IDiceASTNode.java
blob: 073da8918570060aee5803ee2a25bfe7037276d8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
package bjc.utils.dice.ast;

/**
 * The interface for a node in a dice AST
 * 
 * @author ben
 *
 */
public interface IDiceASTNode {
	/**
	 * Check if this node represents an operator or not
	 * 
	 * @return Whether or not this node represents an operator
	 */
	public boolean isOperator();
}