]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.common/src/org/simantics/db/common/primitiverequest/Adapter.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.common / src / org / simantics / db / common / primitiverequest / Adapter.java
index 4eb1d3e744d9c57d8e36194c1ff0186bf4be1a7d..4bfd012d68e8dc112668c01621b85cc536cd7f0d 100644 (file)
@@ -1,43 +1,43 @@
-/*******************************************************************************\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.db.common.primitiverequest;\r
-\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.adaption.AdaptionService;\r
-import org.simantics.db.common.request.BinaryRead;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.exception.ServiceException;\r
-\r
-final public class Adapter<T> extends BinaryRead<Resource,Class<T>,T> {\r
-    \r
-    public Adapter(Resource resource, Class<T> clazz) {\r
-       super(resource, clazz);\r
-    }\r
-\r
-       @Override\r
-       public T perform(ReadGraph graph) throws DatabaseException {\r
-               \r
-               final AdaptionService service = graph.peekService(AdaptionService.class);\r
-               if (service == null) throw new ServiceException("No AdaptionService available");\r
-               \r
-               return service.adapt(graph, parameter, parameter, Resource.class, parameter2, false);\r
-               \r
-       }\r
-    \r
-    @Override\r
-    public String toString() {\r
-        return "Adapter for resource " + parameter.getResourceId() + " as " + parameter2.getName();\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.db.common.primitiverequest;
+
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.adaption.AdaptionService;
+import org.simantics.db.common.request.BinaryRead;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.exception.ServiceException;
+
+final public class Adapter<T> extends BinaryRead<Resource,Class<T>,T> {
+    
+    public Adapter(Resource resource, Class<T> clazz) {
+       super(resource, clazz);
+    }
+
+       @Override
+       public T perform(ReadGraph graph) throws DatabaseException {
+               
+               final AdaptionService service = graph.peekService(AdaptionService.class);
+               if (service == null) throw new ServiceException("No AdaptionService available");
+               
+               return service.adapt(graph, parameter, parameter, Resource.class, parameter2, false);
+               
+       }
+    
+    @Override
+    public String toString() {
+        return "Adapter for resource " + parameter.getResourceId() + " as " + parameter2.getName();
+    }
+
+    
+}