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

cdc.mf.model.deps.MfDependencyEdge Maven / Gradle / Ivy

The newest version!
package cdc.mf.model.deps;

import cdc.graphs.impl.BasicGraphEdge;
import cdc.mf.model.MfElement;

/**
 * Representation of a dependency between MfElements.
 *
 * @author Damien Carbonne
 */
public class MfDependencyEdge extends BasicGraphEdge {
    public MfDependencyEdge(MfElement source,
                            MfElement target) {
        super(source, target);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy