Skip to content

Commit

Permalink
Updates.
Browse files Browse the repository at this point in the history
  • Loading branch information
douglascraigschmidt committed Jun 27, 2015
1 parent e0a840d commit 29dda06
Show file tree
Hide file tree
Showing 2 changed files with 22 additions and 0 deletions.
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package vandy.mooc.operations;

import java.util.Iterator;

/**
* Base interface implemented by all ContactsCommand subclasses.
*/
public interface ContactsCommand {
// Execute the command on the @a contactsIter.
void execute(Iterator<String> contactsIter);
}
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
package vandy.mooc.operations;

import java.util.Iterator;

/**
* Base interface implemented by all ContactsCommand subclasses.
*/
public interface ContactsCommand {
// Execute the command on the @a contactsIter.
void execute(Iterator<String> contactsIter);
}

0 comments on commit 29dda06

Please sign in to comment.