]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.project/src/org/simantics/project/adapters/ProjectAdapter.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.project / src / org / simantics / project / adapters / ProjectAdapter.java
index 441f913ecc0d46cdb2dd0ce83f916666c7fc803c..c22dec333dc0ec30e9e711c5b3bd1033b9d53a4c 100644 (file)
@@ -1,65 +1,65 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2010 Association for Decentralized Information Management\r
- * in 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
- *     VTT Technical Research Centre of Finland - initial API and implementation\r
- *******************************************************************************/\r
-package org.simantics.project.adapters;\r
-\r
-import java.util.Collection;\r
-\r
-import org.eclipse.core.runtime.CoreException;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.common.adaption.SimpleAdapter;\r
-import org.simantics.db.common.utils.NameUtils;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.exception.ServiceException;\r
-import org.simantics.db.exception.ValidationException;\r
-import org.simantics.project.IProject;\r
-import org.simantics.project.ProjectFeatures;\r
-import org.simantics.project.exception.ProjectException;\r
-import org.simantics.project.features.IProjectFeature;\r
-import org.simantics.project.features.registry.IProjectFeatureExtension;\r
-import org.simantics.project.impl.Project;\r
-import org.simantics.project.ontology.ProjectResource;\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public class ProjectAdapter extends SimpleAdapter<IProject> {\r
-\r
-    @Override\r
-    public IProject adapt(ReadGraph g, Resource resource) throws DatabaseException {\r
-        ProjectResource PROJ = ProjectResource.getInstance(g);\r
-        if (!g.isInstanceOf(resource, PROJ.Project))\r
-            throw new ValidationException("Cannot adapt resource " + NameUtils.getSafeName(g, resource) + " to IProject. Resource is not an instance of " + ProjectResource.URIs.Project);\r
-\r
-        Project p = new Project(g.getSession(), resource);\r
-        //System.out.println("NEW PROJECT: " + p + " (  " + System.identityHashCode(p) + ")");\r
-        try {\r
-            Collection<IProjectFeatureExtension> sorted = ProjectFeatures.getTopologicallySortedFeatures(g, p.get());\r
-            loadFeatures(g, p, sorted);\r
-            return p;\r
-        } catch (ProjectException e) {\r
-            throw new ValidationException("project feature loading failed", e);\r
-        }\r
-    }\r
-\r
-    private void loadFeatures(ReadGraph g, Project p, Collection<IProjectFeatureExtension> sortedFeatures) throws ProjectException, ValidationException, ServiceException {\r
-        for (IProjectFeatureExtension feature : sortedFeatures) {\r
-            try {\r
-                IProjectFeature pf = feature.newInstance();\r
-                p.addFeature(pf);\r
-            } catch (CoreException e) {\r
-                throw new ValidationException(e);\r
-            }\r
-        }\r
-    }\r
-\r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2010 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:
+ *     VTT Technical Research Centre of Finland - initial API and implementation
+ *******************************************************************************/
+package org.simantics.project.adapters;
+
+import java.util.Collection;
+
+import org.eclipse.core.runtime.CoreException;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.common.adaption.SimpleAdapter;
+import org.simantics.db.common.utils.NameUtils;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.exception.ServiceException;
+import org.simantics.db.exception.ValidationException;
+import org.simantics.project.IProject;
+import org.simantics.project.ProjectFeatures;
+import org.simantics.project.exception.ProjectException;
+import org.simantics.project.features.IProjectFeature;
+import org.simantics.project.features.registry.IProjectFeatureExtension;
+import org.simantics.project.impl.Project;
+import org.simantics.project.ontology.ProjectResource;
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public class ProjectAdapter extends SimpleAdapter<IProject> {
+
+    @Override
+    public IProject adapt(ReadGraph g, Resource resource) throws DatabaseException {
+        ProjectResource PROJ = ProjectResource.getInstance(g);
+        if (!g.isInstanceOf(resource, PROJ.Project))
+            throw new ValidationException("Cannot adapt resource " + NameUtils.getSafeName(g, resource) + " to IProject. Resource is not an instance of " + ProjectResource.URIs.Project);
+
+        Project p = new Project(g.getSession(), resource);
+        //System.out.println("NEW PROJECT: " + p + " (  " + System.identityHashCode(p) + ")");
+        try {
+            Collection<IProjectFeatureExtension> sorted = ProjectFeatures.getTopologicallySortedFeatures(g, p.get());
+            loadFeatures(g, p, sorted);
+            return p;
+        } catch (ProjectException e) {
+            throw new ValidationException("project feature loading failed", e);
+        }
+    }
+
+    private void loadFeatures(ReadGraph g, Project p, Collection<IProjectFeatureExtension> sortedFeatures) throws ProjectException, ValidationException, ServiceException {
+        for (IProjectFeatureExtension feature : sortedFeatures) {
+            try {
+                IProjectFeature pf = feature.newInstance();
+                p.addFeature(pf);
+            } catch (CoreException e) {
+                throw new ValidationException(e);
+            }
+        }
+    }
+
+}