HelpCommandLine.java

package edu.udel.cis.vsl.civl.run.common;

import edu.udel.cis.vsl.civl.run.IF.CommandLine;

public class HelpCommandLine extends NormalCommandLine implements CommandLine {
	/**
	 * The argument of the help command, which could be one of the following: 
	 */
	private String arg;

	public HelpCommandLine() {
		this.commandKind = NormalCommandKind.HELP;
		arg = null;
	}

	public String arg() {
		return arg;
	}

	public void setArg(String arg) {
		this.arg = arg;
	}
}