io.vproxy.pni.exec.ast.AstGenericDef Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pni-exec Show documentation
Show all versions of pni-exec Show documentation
panama native interface pni-exec
The newest version!
package io.vproxy.pni.exec.ast;
public class AstGenericDef {
public String name;
public AstTypeDesc desc;
public AstGenericDef(String name, AstTypeDesc desc) {
this.name = name;
this.desc = desc;
}
@Override
public String toString() {
return name + " extends " + desc;
}
}