Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorAxel Richard2014-03-05 16:38:38 +0000
committerAxel Richard2014-03-05 16:38:38 +0000
commit6362af2a49ae62707714783beac50f64b1717c64 (patch)
tree178b20c2afe97808791ce0d8a4f016de5dde4e76 /plugins/org.eclipse.emf.compare.rcp
parent23ee104dc4aba98f6f7a573ab471cc5674d93039 (diff)
downloadorg.eclipse.emf.compare-6362af2a49ae62707714783beac50f64b1717c64.tar.gz
org.eclipse.emf.compare-6362af2a49ae62707714783beac50f64b1717c64.tar.xz
org.eclipse.emf.compare-6362af2a49ae62707714783beac50f64b1717c64.zip
Fix typo in MatchEngineFactoryRegistryWrapper name
Diffstat (limited to 'plugins/org.eclipse.emf.compare.rcp')
-rw-r--r--plugins/org.eclipse.emf.compare.rcp/src/org/eclipse/emf/compare/rcp/EMFCompareRCPPlugin.java6
-rw-r--r--plugins/org.eclipse.emf.compare.rcp/src/org/eclipse/emf/compare/rcp/internal/match/MatchEngineFactoryRegistryWrapper.java (renamed from plugins/org.eclipse.emf.compare.rcp/src/org/eclipse/emf/compare/rcp/internal/match/MatchEnginefactoryRegistryWrapper.java)6
2 files changed, 6 insertions, 6 deletions
diff --git a/plugins/org.eclipse.emf.compare.rcp/src/org/eclipse/emf/compare/rcp/EMFCompareRCPPlugin.java b/plugins/org.eclipse.emf.compare.rcp/src/org/eclipse/emf/compare/rcp/EMFCompareRCPPlugin.java
index b14dda193..490f0764c 100644
--- a/plugins/org.eclipse.emf.compare.rcp/src/org/eclipse/emf/compare/rcp/EMFCompareRCPPlugin.java
+++ b/plugins/org.eclipse.emf.compare.rcp/src/org/eclipse/emf/compare/rcp/EMFCompareRCPPlugin.java
@@ -32,7 +32,7 @@ import org.eclipse.emf.compare.rcp.internal.extension.IItemRegistry;
import org.eclipse.emf.compare.rcp.internal.extension.impl.DescriptorRegistryEventListener;
import org.eclipse.emf.compare.rcp.internal.extension.impl.ItemRegistry;
import org.eclipse.emf.compare.rcp.internal.match.MatchEngineFactoryRegistryListener;
-import org.eclipse.emf.compare.rcp.internal.match.MatchEnginefactoryRegistryWrapper;
+import org.eclipse.emf.compare.rcp.internal.match.MatchEngineFactoryRegistryWrapper;
import org.eclipse.emf.compare.rcp.internal.merger.MergerExtensionRegistryListener;
import org.eclipse.emf.compare.rcp.internal.policy.LoadOnDemandPolicyRegistryImpl;
import org.eclipse.emf.compare.rcp.internal.policy.LoadOnDemandPolicyRegistryListener;
@@ -116,7 +116,7 @@ public class EMFCompareRCPPlugin extends Plugin {
private IItemRegistry<IMatchEngine.Factory> matchEngineFactoryRegistry;
/** The registry that will hold references to all match engine factories. */
- private MatchEnginefactoryRegistryWrapper matchEngineFactoryRegistryWrapped;
+ private MatchEngineFactoryRegistryWrapper matchEngineFactoryRegistryWrapped;
/** The registry listener that will be used to react to match engine changes. */
private MatchEngineFactoryRegistryListener matchEngineFactoryRegistryListener;
@@ -200,7 +200,7 @@ public class EMFCompareRCPPlugin extends Plugin {
matchEngineFactoryRegistryListener = new MatchEngineFactoryRegistryListener(PLUGIN_ID,
MATCH_ENGINE_PPID, getLog(), matchEngineFactoryRegistry);
matchEngineFactoryRegistryListener.readRegistry(registry);
- matchEngineFactoryRegistryWrapped = new MatchEnginefactoryRegistryWrapper(matchEngineFactoryRegistry);
+ matchEngineFactoryRegistryWrapped = new MatchEngineFactoryRegistryWrapper(matchEngineFactoryRegistry);
}
/**
diff --git a/plugins/org.eclipse.emf.compare.rcp/src/org/eclipse/emf/compare/rcp/internal/match/MatchEnginefactoryRegistryWrapper.java b/plugins/org.eclipse.emf.compare.rcp/src/org/eclipse/emf/compare/rcp/internal/match/MatchEngineFactoryRegistryWrapper.java
index aefd17af5..80b16e1bc 100644
--- a/plugins/org.eclipse.emf.compare.rcp/src/org/eclipse/emf/compare/rcp/internal/match/MatchEnginefactoryRegistryWrapper.java
+++ b/plugins/org.eclipse.emf.compare.rcp/src/org/eclipse/emf/compare/rcp/internal/match/MatchEngineFactoryRegistryWrapper.java
@@ -40,7 +40,7 @@ import org.eclipse.emf.compare.scope.IComparisonScope;
*
* @author <a href="mailto:arthur.daussy@obeo.fr">Arthur Daussy</a>
*/
-public class MatchEnginefactoryRegistryWrapper implements IMatchEngine.Factory.Registry {
+public class MatchEngineFactoryRegistryWrapper implements IMatchEngine.Factory.Registry {
/** EMPTY_STRING. */
private static final String EMPTY_STRING = ""; //$NON-NLS-1$
@@ -52,9 +52,9 @@ public class MatchEnginefactoryRegistryWrapper implements IMatchEngine.Factory.R
* Constructor.
*
* @param registy
- * {@link MatchEnginefactoryRegistryWrapper#registry}
+ * {@link MatchEngineFactoryRegistryWrapper#registry}
*/
- public MatchEnginefactoryRegistryWrapper(IItemRegistry<Factory> registy) {
+ public MatchEngineFactoryRegistryWrapper(IItemRegistry<Factory> registy) {
super();
this.registry = registy;
}

Back to the top