io.github.kiryu1223.expressionTree.ext.IExtensionService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ExpressionTree Show documentation
Show all versions of ExpressionTree Show documentation
java static expressionTree
package io.github.kiryu1223.expressionTree.ext;
import com.sun.source.util.TaskEvent;
import com.sun.tools.javac.util.Context;
public interface IExtensionService
{
void init(Context context);
void started(TaskEvent event) throws Throwable;
void finished(TaskEvent event) throws Throwable;
}