forked from juleswhite/mobilecloud-15
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
e0a840d
commit 29dda06
Showing
2 changed files
with
22 additions
and
0 deletions.
There are no files selected for viewing
11 changes: 11 additions & 0 deletions
11
ex/ContactsContentProviderLoaderManager/src/vandy/mooc/operations/ContactsCommand.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} |
11 changes: 11 additions & 0 deletions
11
ex/ContactsContentProviderSimple/src/vandy/mooc/operations/ContactsCommand.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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); | ||
} |