![JAR search and dependency download from the Maven repository](/logo.png)
org.unix4j.codegen.command.def.OperandDef Maven / Gradle / Ivy
package org.unix4j.codegen.command.def;
import org.unix4j.codegen.def.AbstractElementDef;
public class OperandDef extends AbstractElementDef {
public OperandDef(String name, String type, String desc, String redirection) {
this.name = name;
this.type = type;
this.desc = desc;
this.redirection = redirection;
}
public final String name;
public final String type;
public final String desc;
public final String redirection;
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy