]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db/src/org/simantics/db/adaption/AdaptionService.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db / src / org / simantics / db / adaption / AdaptionService.java
index 28ada79a91d52b4e7d6c09b613c89250f46f1104..81126aedc6c0e0e917588aaa2797b885aa1f8b54 100644 (file)
@@ -1,61 +1,61 @@
-/*******************************************************************************\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.adaption;\r
-\r
-import org.simantics.db.AsyncReadGraph;\r
-import org.simantics.db.ReadGraph;\r
-import org.simantics.db.Resource;\r
-import org.simantics.db.exception.DatabaseException;\r
-import org.simantics.db.procedure.AsyncProcedure;\r
-\r
-public interface AdaptionService {\r
-\r
-       <T,C> T adapt(ReadGraph g, Resource r, C context, Class<C> contextClass, Class<T> targetClass, boolean possible) throws DatabaseException;\r
-       \r
-    <T,C> void adapt(AsyncReadGraph g, Resource r, C context, Class<C> contextClass, Class<T> targetClass, boolean possible, AsyncProcedure<T> procedure);\r
-    <T> void adaptNew(AsyncReadGraph g, Resource r, Class<T> clazz, boolean possible, AsyncProcedure<T> procedure);\r
-\r
-    <T> void declareAdapter(Resource type, Class<T> targetClass);\r
-    <T> void declareAdapter(Resource type, Class<T> targetClass, Class<?> contextClass);\r
-\r
-    <T> void addAdapter(Resource type, Class<T> targetClass, Adapter<T, ?> adapter);\r
-    <T> void addAdapter(Resource type, Class<T> targetClass, Class<?> contextClass, Adapter<T, ?> adapter);\r
-    \r
-    <T> void addInstanceAdapter(Resource resource, Class<T> targetClass, Adapter<T, ?> adapter);\r
-    <T> void addInstanceAdapter(Resource resource, Class<T> targetClass, Class<?> contextClass, Adapter<T, ?> adapter);\r
-\r
-    /**\r
-     * Remove instance adapter to specified class for specified resource,\r
-     * regardless of the currently installed adapter.\r
-     * \r
-     * @param <T> the adaptation target type\r
-     * @param resource the resource from which to remove the adapter\r
-     * @param clazz the target class of the adapter to be removed\r
-     * @return the removed adapter or <code>null</code> if no adapter was\r
-     *         installed\r
-     */\r
-    <T> Adapter<T,?> removeInstanceAdapter(Resource resource, Class<T> clazz);\r
-    <T> Adapter<T,?> removeInstanceAdapter(Resource resource, Class<T> clazz, Class<?> contextClass);\r
-\r
-    /**\r
-     * Remove instance adapter to specified class for specified resource\r
-     * if the currently installed adapter matches the specified adapter.\r
-     * \r
-     * @param <T> the adaptation target type\r
-     * @param resource the resource from which to remove the adapter\r
-     * @param clazz the target class of the adapter to be removed\r
-     * @param adapter the adapter to remove\r
-     */\r
-    <T> void removeInstanceAdapter(Resource resource, Class<T> clazz, Adapter<T,?> adapter);\r
-    <T> void removeInstanceAdapter(Resource resource, Class<T> clazz, Class<?> contextClass, Adapter<T,?> adapter);\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.adaption;
+
+import org.simantics.db.AsyncReadGraph;
+import org.simantics.db.ReadGraph;
+import org.simantics.db.Resource;
+import org.simantics.db.exception.DatabaseException;
+import org.simantics.db.procedure.AsyncProcedure;
+
+public interface AdaptionService {
+
+       <T,C> T adapt(ReadGraph g, Resource r, C context, Class<C> contextClass, Class<T> targetClass, boolean possible) throws DatabaseException;
+       
+    <T,C> void adapt(AsyncReadGraph g, Resource r, C context, Class<C> contextClass, Class<T> targetClass, boolean possible, AsyncProcedure<T> procedure);
+    <T> void adaptNew(AsyncReadGraph g, Resource r, Class<T> clazz, boolean possible, AsyncProcedure<T> procedure);
+
+    <T> void declareAdapter(Resource type, Class<T> targetClass);
+    <T> void declareAdapter(Resource type, Class<T> targetClass, Class<?> contextClass);
+
+    <T> void addAdapter(Resource type, Class<T> targetClass, Adapter<T, ?> adapter);
+    <T> void addAdapter(Resource type, Class<T> targetClass, Class<?> contextClass, Adapter<T, ?> adapter);
+    
+    <T> void addInstanceAdapter(Resource resource, Class<T> targetClass, Adapter<T, ?> adapter);
+    <T> void addInstanceAdapter(Resource resource, Class<T> targetClass, Class<?> contextClass, Adapter<T, ?> adapter);
+
+    /**
+     * Remove instance adapter to specified class for specified resource,
+     * regardless of the currently installed adapter.
+     * 
+     * @param <T> the adaptation target type
+     * @param resource the resource from which to remove the adapter
+     * @param clazz the target class of the adapter to be removed
+     * @return the removed adapter or <code>null</code> if no adapter was
+     *         installed
+     */
+    <T> Adapter<T,?> removeInstanceAdapter(Resource resource, Class<T> clazz);
+    <T> Adapter<T,?> removeInstanceAdapter(Resource resource, Class<T> clazz, Class<?> contextClass);
+
+    /**
+     * Remove instance adapter to specified class for specified resource
+     * if the currently installed adapter matches the specified adapter.
+     * 
+     * @param <T> the adaptation target type
+     * @param resource the resource from which to remove the adapter
+     * @param clazz the target class of the adapter to be removed
+     * @param adapter the adapter to remove
+     */
+    <T> void removeInstanceAdapter(Resource resource, Class<T> clazz, Adapter<T,?> adapter);
+    <T> void removeInstanceAdapter(Resource resource, Class<T> clazz, Class<?> contextClass, Adapter<T,?> adapter);
+
+}