Elaborate on description of ScriptGroup.execute

b/21039492

ScriptGroup.execute(Object...): Describe input and output order.

Change-Id: I88668338ab2ac50e602b97891b86509c81dedf4d
This commit is contained in:
Yang Ni
2015-05-12 13:53:38 -07:00
parent f038295e98
commit 4356389606

View File

@@ -400,8 +400,10 @@ public final class ScriptGroup extends BaseObj {
/**
* Executes a script group
*
* @param inputs inputs to the script group
* @return outputs of the script group as an array of objects
* @param inputs Values for inputs to the script group, in the order as the
* inputs are added via {@link Builder2#addInput}.
* @return Outputs of the script group as an array of objects, in the order
* as futures are passed to {@link Builder2#create}.
*/
public Object[] execute(Object... inputs) {