io.vproxy.pni.exec.extension.Extension Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pni-exec-jdk22 Show documentation
Show all versions of pni-exec-jdk22 Show documentation
panama native interface pni-exec-jdk22
The newest version!
package io.vproxy.pni.exec.extension;
import io.vproxy.pni.exec.CompilerOptions;
import io.vproxy.pni.exec.ast.AstClass;
import java.util.List;
public interface Extension {
void validate(CompilerOptions opts) throws ExtensionValidationException;
void generate(List templates, CompilerOptions opts);
}