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

org.vertexium.DefaultElementLocation Maven / Gradle / Ivy

There is a newer version: 4.10.0
Show newest version
package org.vertexium;

abstract class DefaultElementLocation extends DefaultElementId implements ElementLocation {
    private final Visibility visibility;

    protected DefaultElementLocation(ElementType elementType, String id, Visibility visibility) {
        super(elementType, id);
        this.visibility = visibility;
    }

    @Override
    public Visibility getVisibility() {
        return visibility;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy