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

com.github.uscexp.grappa.extension.nodes.AstCommandTreeNode Maven / Gradle / Ivy

There is a newer version: 0.4.0-Beta
Show newest version
/*
 * Copyright (C) 2014 by haui - all rights reserved
 */
package com.github.uscexp.grappa.extension.nodes;

import org.parboiled.Node;

import com.github.uscexp.grappa.extension.annotations.AstCommand;

/**
 * base class for all {@link AstCommand} annotated parser rules.
 * the subclass has to contain the command logic.
 * 
 * @author haui
 *
 */
public abstract class AstCommandTreeNode extends AstTreeNode {

	public AstCommandTreeNode(Node node, String value) {
		super(node, value);
	}
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy