001package org.unix4j.codegen.command.def;
002
003import org.unix4j.codegen.def.AbstractElementDef;
004
005public class OperandDef extends AbstractElementDef {
006        public OperandDef(String name, String type, String desc, String redirection) {
007                this.name = name;
008                this.type = type;
009                this.desc = desc;
010                this.redirection = redirection;
011        }
012        public final String name;
013        public final String type;
014        public final String desc;
015        public final String redirection;
016}