tech.harmonysoft.oss.traute.javac.text.ExceptionTextGeneratorSpi Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of traute-javac Show documentation
Show all versions of traute-javac Show documentation
A Javac plugin which inserts null-checks into generated bytecode
package tech.harmonysoft.oss.traute.javac.text;
import org.jetbrains.annotations.NotNull;
import java.util.Set;
public interface ExceptionTextGeneratorSpi {
@NotNull
Set getSupportedVariables();
@NotNull
String getVariableValue(@NotNull String variableName, @NotNull T context);
}