Skip to content

Commit

Permalink
Merge pull request #89 from jovyntls/extend-from-parser
Browse files Browse the repository at this point in the history
Extend from parser
  • Loading branch information
okyntary authored Oct 18, 2021
2 parents a7f06b1 + 0fc99d3 commit 1ba02b9
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@
import seedu.address.logic.commands.cca.CcaEnrolCommand;
import seedu.address.logic.parser.ArgumentMultimap;
import seedu.address.logic.parser.ArgumentTokenizer;
import seedu.address.logic.parser.Parser;
import seedu.address.logic.parser.ParserUtil;
import seedu.address.logic.parser.Prefix;
import seedu.address.logic.parser.exceptions.ParseException;

public class CcaEnrolCommandParser {
public class CcaEnrolCommandParser implements Parser<CcaEnrolCommand> {
/**
* Parses the given {@code String} of arguments in the context of the CcaEnrolCommand
* and returns an CcaEnrolCommand object for execution.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,12 @@
import seedu.address.logic.commands.cca.CcaExpelCommand;
import seedu.address.logic.parser.ArgumentMultimap;
import seedu.address.logic.parser.ArgumentTokenizer;
import seedu.address.logic.parser.Parser;
import seedu.address.logic.parser.ParserUtil;
import seedu.address.logic.parser.Prefix;
import seedu.address.logic.parser.exceptions.ParseException;

public class CcaExpelCommandParser {
public class CcaExpelCommandParser implements Parser<CcaExpelCommand> {
/**
* Parses the given {@code String} of arguments in the context of the CcaEnrolCommand
* and returns an CcaEnrolCommand object for execution.
Expand Down

0 comments on commit 1ba02b9

Please sign in to comment.