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

AnnotatedTree.Layer.DependencyLayer Maven / Gradle / Ivy

There is a newer version: 1.0.58
Show newest version
package AnnotatedTree.Layer;

public class DependencyLayer extends SingleWordLayer {

    /**
     * Constructor for the dependency layer. Dependency layer stores the dependency information of a node.
     * @param layerValue Value of the dependency layer.
     */
    public DependencyLayer(String layerValue) {
        layerName = "dependency";
        setLayerValue(layerValue);
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy