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

xuml.tools.model.compiler.runtime.query.Not Maven / Gradle / Ivy

package xuml.tools.model.compiler.runtime.query;

import xuml.tools.model.compiler.runtime.Entity;

public class Not> extends BooleanExpression {

    private final BooleanExpression e;

    public Not(BooleanExpression e) {
        this.e = e;
    }

    public BooleanExpression getExpression() {
        return e;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy