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

io.vproxy.pni.exec.ast.AstGenericDef Maven / Gradle / Ivy

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;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy