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

org.ikasan.dashboard.ui.visualisation.event.GraphViewChangeEvent Maven / Gradle / Ivy

There is a newer version: 4.0.1
Show newest version
package org.ikasan.dashboard.ui.visualisation.event;

import org.ikasan.dashboard.ui.visualisation.model.flow.Flow;
import org.ikasan.dashboard.ui.visualisation.model.flow.Module;

public class GraphViewChangeEvent
{
    private Module module;
    private Flow flow;

    public GraphViewChangeEvent() {
    }

    public GraphViewChangeEvent(Module module, Flow flow)
    {
        this.module = module;
        this.flow = flow;
    }

    public Module getModule()
    {
        return module;
    }

    public Flow getFlow()
    {
        return flow;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy