org.unix4j.codegen.optset.def.OptionSetDef Maven / Gradle / Ivy
package org.unix4j.codegen.optset.def;
import java.util.ArrayList;
import java.util.List;
import org.unix4j.codegen.command.def.CommandDef;
import org.unix4j.codegen.def.AbstractElementDef;
import org.unix4j.codegen.def.TypeDef;
public class OptionSetDef extends AbstractElementDef {
public > OptionSetDef(CommandDef command, TypeDef optionType) {
this.command = command;
this.optionType = optionType;
}
public final CommandDef command;
public final TypeDef optionType;
public final List groups = new ArrayList();
public OptionGroupDef initialGroup;
@Override
public String toString() {
return "\n" + toString("");
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy