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
+2 -2
View File
@@ -103,12 +103,12 @@ public class AudioHandler 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) {
if (action.equals("getCurrentPositionAudio")) {
return true;
}