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

io.takari.bpm.model.diagram.Edge Maven / Gradle / Ivy

There is a newer version: 1.0.3
Show newest version
package io.takari.bpm.model.diagram;

import java.io.Serializable;
import java.util.List;

public class Edge implements Serializable {

    private static final long serialVersionUID = 1L;

    private final String id;
    private final String elementId;
    private final Label label;
    private final List waypoints;

    public Edge(String id, String elementId, Label label, List waypoints) {
        this.id = id;
        this.elementId = elementId;
        this.label = label;
        this.waypoints = waypoints;
    }

    public String getElementId() {
        return elementId;
    }

    public String getId() {
        return id;
    }

    public List getWaypoints() {
        return waypoints;
    }

    public Label getLabel() {
        return label;
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy