Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorArthur Daussy2014-07-04 09:23:52 +0000
committerMikael Barbero2014-07-18 11:26:01 +0000
commit4ad0c24c21b68c370ed0cc6189a879c22d87bd08 (patch)
treedca13fd1f6d4d24ce7565108806a50bcb5b4200e /plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/adapterfactory
parent47a5048c07509a5abb7e06480e5be8c56a186664 (diff)
downloadorg.eclipse.emf.compare-4ad0c24c21b68c370ed0cc6189a879c22d87bd08.tar.gz
org.eclipse.emf.compare-4ad0c24c21b68c370ed0cc6189a879c22d87bd08.tar.xz
org.eclipse.emf.compare-4ad0c24c21b68c370ed0cc6189a879c22d87bd08.zip
Adds Item provider preference page.
Creates a preference page to enable/disable adapter factories registered into EMF Compare. Change-Id: Ibaa61852769cc3a1710cc2bbd00bba30a7b1b391 Signed-off-by: Arthur Daussy <arthur.daussy@obeo.fr>
Diffstat (limited to 'plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/adapterfactory')
-rw-r--r--plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/adapterfactory/EMFCompareAdapterFactoryTest.java12
1 files changed, 12 insertions, 0 deletions
diff --git a/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/adapterfactory/EMFCompareAdapterFactoryTest.java b/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/adapterfactory/EMFCompareAdapterFactoryTest.java
index 706f80b56..31cd296f7 100644
--- a/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/adapterfactory/EMFCompareAdapterFactoryTest.java
+++ b/plugins/org.eclipse.emf.compare.tests/src/org/eclipse/emf/compare/tests/adapterfactory/EMFCompareAdapterFactoryTest.java
@@ -102,6 +102,18 @@ public class EMFCompareAdapterFactoryTest {
return this.adapterFactory.getClass().getName();
}
+ public String getLabel() {
+ return "";
+ }
+
+ public String getDescription() {
+ return null;
+ }
+
+ public boolean isOptional() {
+ return false;
+ }
+
}
/**

Back to the top