]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.modeling.ui/src/org/simantics/modeling/ui/modelBrowser2/contributions/IsComponentTest.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.modeling.ui / src / org / simantics / modeling / ui / modelBrowser2 / contributions / IsComponentTest.java
index 5067498ff6f51942c90113605cf403c4046b7225..a80c5806053ef00c01f82f362764163be2cd5455 100644 (file)
@@ -1,58 +1,58 @@
-/*******************************************************************************\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.ui.modelBrowser2.contributions;\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.variable.Variable;\r
-import org.simantics.structural.stubs.StructuralResource2;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public enum IsComponentTest implements Test {\r
-\r
-       INSTANCE;\r
-\r
-       public static IsComponentTest 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
-                       StructuralResource2 STR = StructuralResource2.getInstance(graph);\r
-                       Resource type = v.getPossibleType(graph, STR.Component);\r
-                       //System.out.println("variable component type: " + NameUtils.getURIOrSafeNameInternal(graph, type));\r
-                       return type != null;\r
-               } else if (content instanceof Resource) {\r
-                       Resource r = (Resource) content;\r
-                       //System.out.println("Test resource: " + NameUtils.getURIOrSafeNameInternal(graph, r));\r
-                       StructuralResource2 STR = StructuralResource2.getInstance(graph);\r
-                       Resource type = graph.getPossibleType(r, STR.Component);\r
-                       //System.out.println("resource component type: " + NameUtils.getURIOrSafeNameInternal(graph, type));\r
-                       return type != 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.ui.modelBrowser2.contributions;
+
+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.variable.Variable;
+import org.simantics.structural.stubs.StructuralResource2;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public enum IsComponentTest implements Test {
+
+       INSTANCE;
+
+       public static IsComponentTest 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));
+                       StructuralResource2 STR = StructuralResource2.getInstance(graph);
+                       Resource type = v.getPossibleType(graph, STR.Component);
+                       //System.out.println("variable component type: " + NameUtils.getURIOrSafeNameInternal(graph, type));
+                       return type != null;
+               } else if (content instanceof Resource) {
+                       Resource r = (Resource) content;
+                       //System.out.println("Test resource: " + NameUtils.getURIOrSafeNameInternal(graph, r));
+                       StructuralResource2 STR = StructuralResource2.getInstance(graph);
+                       Resource type = graph.getPossibleType(r, STR.Component);
+                       //System.out.println("resource component type: " + NameUtils.getURIOrSafeNameInternal(graph, type));
+                       return type != null;
+               }
+               return false;
+       }
+
+}