]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.browsing.ui.model/src/org/simantics/browsing/ui/model/tests/FailTest.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.browsing.ui.model / src / org / simantics / browsing / ui / model / tests / FailTest.java
1 /*******************************************************************************
2  * Copyright (c) 2015 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  *     Semantum - initial API and implementation
11  *******************************************************************************/
12 package org.simantics.browsing.ui.model.tests;
13
14 import org.simantics.db.ReadGraph;
15 import org.simantics.db.exception.DatabaseException;
16
17 /**
18  * A browse context {@link Test} implementation that always fails and is
19  * compatible with all content types.
20  * 
21  * @author Tuukka Lehtonen
22  */
23 public enum FailTest implements Test {
24     INSTANCE;
25
26     public static FailTest get() {
27         return INSTANCE;
28     }
29
30     @Override
31     public boolean isCompatible(Class<?> contentType) {
32         return true;
33     }
34
35     @Override
36     public boolean test(ReadGraph graph, Object content) throws DatabaseException {
37         return false;
38     }
39
40 }