]> git.argeo.org Git - lgpl/argeo-commons.git/blob - org.argeo.api.acr/src/org/argeo/api/acr/search/Not.java
Add cr:path name
[lgpl/argeo-commons.git] / org.argeo.api.acr / src / org / argeo / api / acr / search / Not.java
1 package org.argeo.api.acr.search;
2
3 /** Negates the provided constraint. */
4 public class Not implements Constraint {
5 final Constraint negated;
6
7 public Not(Constraint negated) {
8 this.negated = negated;
9 }
10
11 public Constraint getNegated() {
12 return negated;
13 }
14
15 }