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

org.drools.simulation.impl.PathImpl Maven / Gradle / Ivy

There is a newer version: 7.0.0.Beta2
Show newest version
package org.drools.simulation.impl;

import java.util.Collection;
import java.util.HashMap;
import java.util.Map;

import org.drools.command.Context;
import org.drools.simulation.Path;
import org.drools.simulation.Simulation;
import org.drools.simulation.Step;

public class PathImpl
    implements
    Path {
    private SimulationImpl   simulation;

    private String           name;

    private Collection steps;

    public PathImpl(Simulation simulation,
                    String name) {
        this.name = name;
        this.simulation = (SimulationImpl) simulation;
    }

    public void setSteps(Collection steps) {
        this.steps = steps;
    }

    public String getName() {
        return this.name;
    }

    public Collection getSteps() {
        return this.steps;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy