Ejemplo n.º 1
0
 /**
  * Set the argument of a Bio7 flow.
  *
  * @param argument a string representing the argument.
  */
 public static void setArgument(String argument) {
   BatchModel.setArgument(argument);
 }
Ejemplo n.º 2
0
 /**
  * Cancel the Bio7 flow.
  *
  * @param cancel a boolean value.
  */
 public static void setCancel(boolean cancel) {
   BatchModel.setCancel(cancel);
 }
Ejemplo n.º 3
0
 /**
  * Get the argument value of a Bio7 flow.
  *
  * @return a string representing the argument value.
  */
 public static String getArgument() {
   return BatchModel.getArgument();
 }
Ejemplo n.º 4
0
 /**
  * Returns if a flow is canceled.
  *
  * @return a boolean value.
  */
 public static boolean isCancel() {
   return BatchModel.isCancel();
 }
Ejemplo n.º 5
0
 /**
  * Set the decision value of a Bio7 flow.
  *
  * @param decision the boolean value as a string.
  */
 public static void setDecision(String decision) {
   BatchModel.setDecision(decision);
 }
Ejemplo n.º 6
0
 /**
  * Returns the string representation of a decision value from a Bio7 flow.
  *
  * @return a boolean value as a string.
  */
 public static String getDecision() {
   return BatchModel.getDecision();
 }
Ejemplo n.º 7
0
  /**
   * Returns the path of the folder in the Bio7 flow.
   *
   * @return a string representation of the path.
   */
  public static String getFolder() {

    return BatchModel.getFolder();
  }
Ejemplo n.º 8
0
  /**
   * Opens the specified folder in the Bio7 flow if set to true. If this value is set to false no
   * external application will be executed!
   *
   * @param value a value.
   */
  public static void openFolder(boolean value) {

    BatchModel.setOpenFolder(value);
  }