]> git.argeo.org Git - lgpl/argeo-commons.git/blob - Intersection.java
5fff2ae8868867f4a82fa95055bfe3363298b22b
[lgpl/argeo-commons.git] / Intersection.java
1 package org.argeo.api.acr.search;
2 class Intersection implements Composition {
3 ContentFilter<Intersection> filter;
4
5 @SuppressWarnings("unchecked")
6 public Intersection(ContentFilter<?> filter) {
7 this.filter = (ContentFilter<Intersection>) filter;
8 }
9
10 public ContentFilter<Intersection> and() {
11 return filter;
12 }
13
14 }
15