]> gerrit.simantics Code Review - simantics/platform.git/blobdiff - bundles/org.simantics.db.management/src/org/simantics/db/management/ISessionContextProviderSource.java
Fixed all line endings of the repository
[simantics/platform.git] / bundles / org.simantics.db.management / src / org / simantics / db / management / ISessionContextProviderSource.java
index 6c0337861b37b98822886f9b2fc0ada63cf40fa9..903cf08182327899cc34cfb8ed7e0bfdd0f97576 100644 (file)
@@ -1,62 +1,62 @@
-/*******************************************************************************\r
- * Copyright (c) 2007, 2011 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.management;\r
-\r
-\r
-/**\r
- * @author Tuukka Lehtonen\r
- */\r
-public interface ISessionContextProviderSource {\r
-\r
-    /**\r
-     * @param context the context object of the requested ISessionContextProvider\r
-     * @return <code>null</code> if there is no provider for the specified context\r
-     */\r
-    ISessionContextProvider get(Object context);\r
-\r
-    /**\r
-     * @return the currently active session context provider. Must always return\r
-     *         a valid provider.\r
-     */\r
-    ISessionContextProvider getActive();\r
-\r
-    /**\r
-     * @return all currently existing session context providers \r
-     */\r
-    ISessionContextProvider[] getAll();\r
-\r
-    /**\r
-     * Used for manually installing ISessionContextProvider for a specified\r
-     * context handle object.\r
-     * \r
-     * @param context the context handle to associate the session context\r
-     *        provider to. This same argument needs to be used with\r
-     *        {@link #get(Object)} when retrieving your session context\r
-     *        provider.\r
-     * @param provider the session context provider to associate with the\r
-     *        specified context\r
-     */\r
-    void put(Object context, ISessionContextProvider provider);\r
-\r
-    /**\r
-     * Used for manually removing an (context, provider) association from this\r
-     * source. Only associations created with\r
-     * {@link #put(Object, ISessionContextProvider)} can be removed with this\r
-     * method.\r
-     * \r
-     * @param context the context handle to associate the session context\r
-     *        provider to.\r
-     * @return the dissociated session context provider\r
-     */\r
-    ISessionContextProvider remove(Object context);\r
-    \r
-}\r
+/*******************************************************************************
+ * Copyright (c) 2007, 2011 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.management;
+
+
+/**
+ * @author Tuukka Lehtonen
+ */
+public interface ISessionContextProviderSource {
+
+    /**
+     * @param context the context object of the requested ISessionContextProvider
+     * @return <code>null</code> if there is no provider for the specified context
+     */
+    ISessionContextProvider get(Object context);
+
+    /**
+     * @return the currently active session context provider. Must always return
+     *         a valid provider.
+     */
+    ISessionContextProvider getActive();
+
+    /**
+     * @return all currently existing session context providers 
+     */
+    ISessionContextProvider[] getAll();
+
+    /**
+     * Used for manually installing ISessionContextProvider for a specified
+     * context handle object.
+     * 
+     * @param context the context handle to associate the session context
+     *        provider to. This same argument needs to be used with
+     *        {@link #get(Object)} when retrieving your session context
+     *        provider.
+     * @param provider the session context provider to associate with the
+     *        specified context
+     */
+    void put(Object context, ISessionContextProvider provider);
+
+    /**
+     * Used for manually removing an (context, provider) association from this
+     * source. Only associations created with
+     * {@link #put(Object, ISessionContextProvider)} can be removed with this
+     * method.
+     * 
+     * @param context the context handle to associate the session context
+     *        provider to.
+     * @return the dissociated session context provider
+     */
+    ISessionContextProvider remove(Object context);
+    
+}