]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.template2d.ui/src/org/simantics/modeling/template2d/ui/adapters/IsInModelTest.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling.template2d.ui / src / org / simantics / modeling / template2d / ui / adapters / IsInModelTest.java
index 50e2952488e6360fa3b0479e6acb41c6b8c7a305..ac3d7513f7f0ad42a042463729f61ed6dbcb120e 100644 (file)
@@ -1,57 +1,57 @@
-/*******************************************************************************\r
- * Copyright (c) 2013 Association for Decentralized Information Management in\r
- * Industry THTH ry.\r
- * All rights reserved. This program and the accompanying materials\r
- * are made available under the terms of the Eclipse Public License v1.0\r
- * which accompanies this distribution, and is available at\r
- * http://www.eclipse.org/legal/epl-v10.html\r
- *\r
- * Contributors:\r
- *     Semantum Oy - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.modeling.template2d.ui.adapters;\r
-\r
-import org.simantics.browsing.ui.model.tests.Test;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.layer0.request.PossibleModel;\r
-import org.simantics.db.layer0.variable.Variable;\r
-import org.simantics.db.layer0.variable.Variables;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public enum IsInModelTest implements Test {\r
-\r
-       INSTANCE;\r
-\r
-       public static IsInModelTest get() {\r
-               return INSTANCE;\r
-       }\r
-\r
-       @Override\r
-       public boolean isCompatible(Class<?> contentType) {\r
-               return Variable.class.equals(contentType) ||\r
-                               Resource.class.equals(contentType);\r
-       }\r
-\r
-       @Override\r
-       public boolean test(ReadGraph graph, Object content) throws DatabaseException {\r
-               if (content instanceof Variable) {\r
-                       Variable v = (Variable) content;\r
-                       //System.out.println("Test variable: " + v.getURI(graph));\r
-                       Resource model = Variables.getPossibleModel(graph, v);\r
-                       //System.out.println("variable model: " + NameUtils.getURIOrSafeNameInternal(graph, model));\r
-                       return model != null;\r
-               } else if (content instanceof Resource) {\r
-                       Resource r = (Resource) content;\r
-                       //System.out.println("Test resource: " + NameUtils.getURIOrSafeNameInternal(graph, r));\r
-                       Resource model = graph.syncRequest(new PossibleModel(r));\r
-                       //System.out.println("resource model: " + NameUtils.getURIOrSafeNameInternal(graph, model));\r
-                       return model != null;\r
-               }\r
-               return false;\r
-       }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2013 Association for Decentralized Information Management in
+ * Industry THTH ry.
+ * All rights reserved. This program and the accompanying materials
+ * are made available under the terms of the Eclipse Public License v1.0
+ * which accompanies this distribution, and is available at
+ * http://www.eclipse.org/legal/epl-v10.html
+ *
+ * Contributors:
+ *     Semantum Oy - initial API and implementation
+ *******************************************************************************/
+package org.simantics.modeling.template2d.ui.adapters;
+
+import org.simantics.browsing.ui.model.tests.Test;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.layer0.request.PossibleModel;
+import org.simantics.db.layer0.variable.Variable;
+import org.simantics.db.layer0.variable.Variables;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public enum IsInModelTest implements Test {
+
+       INSTANCE;
+
+       public static IsInModelTest get() {
+               return INSTANCE;
+       }
+
+       @Override
+       public boolean isCompatible(Class<?> contentType) {
+               return Variable.class.equals(contentType) ||
+                               Resource.class.equals(contentType);
+       }
+
+       @Override
+       public boolean test(ReadGraph graph, Object content) throws DatabaseException {
+               if (content instanceof Variable) {
+                       Variable v = (Variable) content;
+                       //System.out.println("Test variable: " + v.getURI(graph));
+                       Resource model = Variables.getPossibleModel(graph, v);
+                       //System.out.println("variable model: " + NameUtils.getURIOrSafeNameInternal(graph, model));
+                       return model != null;
+               } else if (content instanceof Resource) {
+                       Resource r = (Resource) content;
+                       //System.out.println("Test resource: " + NameUtils.getURIOrSafeNameInternal(graph, r));
+                       Resource model = graph.syncRequest(new PossibleModel(r));
+                       //System.out.println("resource model: " + NameUtils.getURIOrSafeNameInternal(graph, model));
+                       return model != null;
+               }
+               return false;
+       }
+
+}