Implement ReturnValue() for each plugin.

This commit is contained in:
Bryce Curtis
2010-09-10 11:34:06 -05:00
parent 2b015164f4
commit a13b8fc124
10 changed files with 142 additions and 5 deletions

View File

@@ -64,6 +64,16 @@ public class CryptoHandler implements Plugin {
}
}
/**
* Identifies if action to be executed returns a value.
*
* @param action The action to execute
* @return T=returns value
*/
public boolean hasReturnValue(String action) {
return false;
}
/**
* Called when the system is about to start resuming a previous activity.
*/