All Downloads are FREE. Search and download functionalities are using the official Maven repository.

brainslug.flow.node.task.CallDefinition Maven / Gradle / Ivy

There is a newer version: 0.21
Show newest version
package brainslug.flow.node.task;

import java.util.ArrayList;
import java.util.List;

public class CallDefinition {
  private List arguments = new ArrayList();

  public CallDefinition() {
  }

  public CallDefinition arg(Object argument) {
    arguments.add(argument);
    return this;
  }

  public List getArguments() {
    return arguments;
  }
}