Fix javadoc on IntentStore and add newline at the end of the intent package-info.

This commit is contained in:
Toshio Koide 2014-10-09 10:58:54 -07:00
parent 704ca14a42
commit d32809bed6
2 changed files with 4 additions and 3 deletions

View File

@ -33,6 +33,8 @@ public interface IntentStore extends Store<IntentEvent, IntentStoreDelegate> {
/** /**
* Returns the number of intents in the store. * Returns the number of intents in the store.
*
* @return the number of intents in the store
*/ */
long getIntentCount(); long getIntentCount();
@ -44,7 +46,7 @@ public interface IntentStore extends Store<IntentEvent, IntentStoreDelegate> {
Iterable<Intent> getIntents(); Iterable<Intent> getIntents();
/** /**
* Returns the intent with the specified identifer. * Returns the intent with the specified identifier.
* *
* @param intentId intent identification * @param intentId intent identification
* @return intent or null if not found * @return intent or null if not found
@ -94,7 +96,6 @@ public interface IntentStore extends Store<IntentEvent, IntentStoreDelegate> {
* specified original intent. * specified original intent.
* *
* @param intentId original intent identifier * @param intentId original intent identifier
* @return compiled state transition event
*/ */
void removeInstalledIntents(IntentId intentId); void removeInstalledIntents(IntentId intentId);