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

io.github.kiryu1223.expressionTree.ext.IExtensionService Maven / Gradle / Ivy

There is a newer version: 1.4.5
Show newest version
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;
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy