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

org.aksw.jenax.graphql.sparql.Scope Maven / Gradle / Ivy

The newest version!
package org.aksw.jenax.graphql.sparql;

/** Base class for directives whose scope can be only the current node or all of its children  */
public class Scope {
    protected boolean cascade;
    protected boolean self;

    public Scope(boolean cascade, boolean self) {
        super();
        this.cascade = cascade;
        this.self = self;
    }

    public boolean isCascade() {
        return cascade;
    }

    public boolean isSelf() {
        return self;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy