Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/analyzer/CDOFetchRuleManagerThreadLocal.java')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/analyzer/CDOFetchRuleManagerThreadLocal.java130
1 files changed, 65 insertions, 65 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/analyzer/CDOFetchRuleManagerThreadLocal.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/analyzer/CDOFetchRuleManagerThreadLocal.java
index 59f1e938d1..5a2af21f9b 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/analyzer/CDOFetchRuleManagerThreadLocal.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/analyzer/CDOFetchRuleManagerThreadLocal.java
@@ -1,65 +1,65 @@
-/*
- * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
- * 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:
- * Simon McDuff - initial API and implementation
- * Eike Stepper - maintenance
- */
-package org.eclipse.emf.internal.cdo.analyzer;
-
-import org.eclipse.emf.cdo.common.id.CDOID;
-import org.eclipse.emf.cdo.common.util.CDOFetchRule;
-import org.eclipse.emf.cdo.session.CDOCollectionLoadingPolicy;
-import org.eclipse.emf.cdo.view.CDOFetchRuleManager;
-
-import java.util.Collection;
-import java.util.List;
-
-/**
- * @author Simon McDuff
- */
-public class CDOFetchRuleManagerThreadLocal implements CDOFetchRuleManager
-{
- private static final ThreadLocal<CDOFetchRuleManager> threadLocal = new ThreadLocal<CDOFetchRuleManager>();
-
- public CDOFetchRuleManagerThreadLocal()
- {
- }
-
- public static CDOFetchRuleManager getCurrent()
- {
- return threadLocal.get();
- }
-
- public static void join(CDOFetchRuleManager fetchRulemanager)
- {
- threadLocal.set(fetchRulemanager);
- }
-
- public static void leave()
- {
- threadLocal.set(null);
- }
-
- public CDOID getContext()
- {
- CDOFetchRuleManager analyzer = CDOFetchRuleManagerThreadLocal.getCurrent();
- return analyzer != null ? analyzer.getContext() : null;
- }
-
- public List<CDOFetchRule> getFetchRules(Collection<CDOID> ids)
- {
- CDOFetchRuleManager analyzer = CDOFetchRuleManagerThreadLocal.getCurrent();
- return analyzer != null ? analyzer.getFetchRules(ids) : null;
- }
-
- public CDOCollectionLoadingPolicy getCollectionLoadingPolicy()
- {
- CDOFetchRuleManager analyzer = CDOFetchRuleManagerThreadLocal.getCurrent();
- return analyzer != null ? analyzer.getCollectionLoadingPolicy() : null;
- }
-}
+/*
+ * Copyright (c) 2004 - 2012 Eike Stepper (Berlin, Germany) and others.
+ * 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:
+ * Simon McDuff - initial API and implementation
+ * Eike Stepper - maintenance
+ */
+package org.eclipse.emf.internal.cdo.analyzer;
+
+import org.eclipse.emf.cdo.common.id.CDOID;
+import org.eclipse.emf.cdo.common.util.CDOFetchRule;
+import org.eclipse.emf.cdo.session.CDOCollectionLoadingPolicy;
+import org.eclipse.emf.cdo.view.CDOFetchRuleManager;
+
+import java.util.Collection;
+import java.util.List;
+
+/**
+ * @author Simon McDuff
+ */
+public class CDOFetchRuleManagerThreadLocal implements CDOFetchRuleManager
+{
+ private static final ThreadLocal<CDOFetchRuleManager> threadLocal = new ThreadLocal<CDOFetchRuleManager>();
+
+ public CDOFetchRuleManagerThreadLocal()
+ {
+ }
+
+ public static CDOFetchRuleManager getCurrent()
+ {
+ return threadLocal.get();
+ }
+
+ public static void join(CDOFetchRuleManager fetchRulemanager)
+ {
+ threadLocal.set(fetchRulemanager);
+ }
+
+ public static void leave()
+ {
+ threadLocal.set(null);
+ }
+
+ public CDOID getContext()
+ {
+ CDOFetchRuleManager analyzer = CDOFetchRuleManagerThreadLocal.getCurrent();
+ return analyzer != null ? analyzer.getContext() : null;
+ }
+
+ public List<CDOFetchRule> getFetchRules(Collection<CDOID> ids)
+ {
+ CDOFetchRuleManager analyzer = CDOFetchRuleManagerThreadLocal.getCurrent();
+ return analyzer != null ? analyzer.getFetchRules(ids) : null;
+ }
+
+ public CDOCollectionLoadingPolicy getCollectionLoadingPolicy()
+ {
+ CDOFetchRuleManager analyzer = CDOFetchRuleManagerThreadLocal.getCurrent();
+ return analyzer != null ? analyzer.getCollectionLoadingPolicy() : null;
+ }
+}

Back to the top