Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/analyzer/NOOPFetchRuleManager.java')
-rw-r--r--plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/analyzer/NOOPFetchRuleManager.java90
1 files changed, 45 insertions, 45 deletions
diff --git a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/analyzer/NOOPFetchRuleManager.java b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/analyzer/NOOPFetchRuleManager.java
index fe4e84b68a..c890dc55a4 100644
--- a/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/analyzer/NOOPFetchRuleManager.java
+++ b/plugins/org.eclipse.emf.cdo/src/org/eclipse/emf/internal/cdo/analyzer/NOOPFetchRuleManager.java
@@ -1,45 +1,45 @@
-/*
- * 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.view.CDOFetchRuleManager;
-
-import java.util.Collection;
-import java.util.List;
-
-/**
- * @author Simon McDuff
- */
-public abstract class NOOPFetchRuleManager implements CDOFetchRuleManager
-{
- public NOOPFetchRuleManager()
- {
- }
-
- public CDOID getContext()
- {
- return CDOID.NULL;
- }
-
- public List<CDOFetchRule> getFetchRules(Collection<CDOID> ids)
- {
- return null;
- }
-
- @Override
- public String toString()
- {
- return "NOOP"; //$NON-NLS-1$
- }
-}
+/*
+ * 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.view.CDOFetchRuleManager;
+
+import java.util.Collection;
+import java.util.List;
+
+/**
+ * @author Simon McDuff
+ */
+public abstract class NOOPFetchRuleManager implements CDOFetchRuleManager
+{
+ public NOOPFetchRuleManager()
+ {
+ }
+
+ public CDOID getContext()
+ {
+ return CDOID.NULL;
+ }
+
+ public List<CDOFetchRule> getFetchRules(Collection<CDOID> ids)
+ {
+ return null;
+ }
+
+ @Override
+ public String toString()
+ {
+ return "NOOP"; //$NON-NLS-1$
+ }
+}

Back to the top