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

org.ow2.bonita.iteration.IterationObject Maven / Gradle / Ivy

The newest version!
package org.ow2.bonita.iteration;

import java.util.HashSet;
import java.util.Set;

public class IterationObject {

//List of entry nodes
  protected Set entryNodes = new HashSet();
  // List of exit nodes
  protected Set exitNodes = new HashSet();
  // List of nodes in the cycle
  protected Set nodesInPath = new HashSet();
  // List of transitions that are in the cycle
  protected Set transitions = new HashSet();

  @Override
  public String toString() {
    return "entryNodes: " + this.entryNodes + ", exitNodes: " + this.exitNodes + " path: " + this.nodesInPath + ", transitions: " + this.transitions;
  }
  
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy