Change hasReturnValue to isSynch to be more accurate about purpose of method.

This commit is contained in:
Bryce Curtis
2010-09-13 11:01:44 -05:00
parent e4d1087b72
commit 1c0de5ad8d
12 changed files with 26 additions and 26 deletions
@@ -84,12 +84,12 @@ public class CameraLauncher implements Plugin {
}
/**
* Identifies if action to be executed returns a value.
* Identifies if action to be executed returns a value and should be run synchronously.
*
* @param action The action to execute
* @return T=returns value
*/
public boolean hasReturnValue(String action) {
public boolean isSynch(String action) {
return false;
}