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

groovy.transform.CompilationUnitAware Maven / Gradle / Ivy

There is a newer version: 3.0.21
Show newest version
package groovy.transform;
/**
 * Created by IntelliJ IDEA.
 * User: cedric
 * Date: 06/10/11
 * Time: 15:02
 */

import org.codehaus.groovy.control.CompilationUnit;

/**
 * This interface is for AST transformations which must be aware of the compilation unit where they are applied.
 *
 * @author Cedric Champeau
 */
public interface CompilationUnitAware {
    void setCompilationUnit(CompilationUnit unit);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy