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

org.unix4j.codegen.command.def.OperandDef Maven / Gradle / Ivy

There is a newer version: 0.6
Show newest version
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