Skip to content

Commit

Permalink
Add ModuleManager (#37)
Browse files Browse the repository at this point in the history
* Add ModuleManager

* Fix CI errors
  • Loading branch information
GabrielYik authored Oct 3, 2018
1 parent a211f76 commit 915caf0
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 1 deletion.
25 changes: 25 additions & 0 deletions src/main/java/seedu/address/logic/ModuleManager.java
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
package seedu.address.logic;

import seedu.address.model.enumeration.ModuleType;
import seedu.address.model.module.Module;

/**
* The manager of modules.
*/
public class ModuleManager {

//@@author GabrielYik

//TODO
/**
* Changes the module type of the module
*
* @param module module to be changed.
* @param newModuleType the new type that the {@code module} should be.
*/
public void updateModuleType(Module module, ModuleType newModuleType) {

}

//@@author
}
2 changes: 1 addition & 1 deletion src/main/java/seedu/address/model/util/ModuleUtil.java
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
*/
public class ModuleUtil {

//@@author Gabriel
//@@author GabrielYik

//TODO
/**
Expand Down

0 comments on commit 915caf0

Please sign in to comment.