]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.model/src/org/simantics/browsing/ui/model/tests/OrTest.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.model / src / org / simantics / browsing / ui / model / tests / OrTest.java
1 /*******************************************************************************
2  * Copyright (c) 2010, 2011 Association for Decentralized Information Management in
3  * Industry THTH ry.
4  * All rights reserved. This program and the accompanying materials
5  * are made available under the terms of the Eclipse Public License v1.0
6  * which accompanies this distribution, and is available at
7  * http://www.eclipse.org/legal/epl-v10.html
8  *
9  * Contributors:
10  *     VTT Technical Research Centre of Finland - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.browsing.ui.model.tests;
13
14 import java.util.Collection;
15
16 import org.simantics.db.ReadGraph;
17 import org.simantics.db.Resource;
18 import org.simantics.db.exception.DatabaseException;
19
20 /**
21  * @author Tuukka Lehtonen
22  */
23 public class OrTest implements Test {
24     Collection<Test> tests;
25
26     public OrTest(Collection<Test> tests) {
27         this.tests = tests;
28     }
29
30     @Override
31     public boolean isCompatible(Class<?> contentType) {
32         return contentType == Resource.class;
33     }
34
35     @Override
36     public boolean test(ReadGraph graph, Object content)
37             throws DatabaseException {
38         if (tests.isEmpty())
39             return true;
40         for (Test test : tests)
41             if (test.test(graph, content))
42                 return true;
43         return false;
44     }
45
46 }