Package org.eclipse.emf.compare.provider
Class CompareItemProviderAdapterFactory
java.lang.Object
org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
org.eclipse.emf.compare.util.CompareAdapterFactory
org.eclipse.emf.compare.provider.CompareItemProviderAdapterFactory
- All Implemented Interfaces:
AdapterFactory,ComposeableAdapterFactory,IChangeNotifier,IDisposable
- Direct Known Subclasses:
CompareItemProviderAdapterFactorySpec
public class CompareItemProviderAdapterFactory extends CompareAdapterFactory implements ComposeableAdapterFactory, IChangeNotifier, IDisposable
This is the factory that is used to provide the interfaces needed to support Viewers.
The adapters generated by this factory convert EMF adapter notifications into calls to
fireNotifyChanged.
The adapters also support Eclipse property sheets.
Note that most of the adapters are shared among multiple instances.
- Generated:
-
Field Summary
Fields Modifier and Type Field Description protected IChangeNotifierchangeNotifierThis is used to implementIChangeNotifier.static java.lang.Stringcopyrightprotected DisposabledisposableThis keeps track of all the item providers created, so that they can bedisposed.protected ComposedAdapterFactoryparentAdapterFactoryThis keeps track of the root adapter factory that delegates to this adapter factory.protected java.util.Collection<java.lang.Object>supportedTypesThis keeps track of all the supported types checked byisFactoryForType.Fields inherited from class org.eclipse.emf.compare.util.CompareAdapterFactory
modelPackage, modelSwitch -
Constructor Summary
Constructors Constructor Description CompareItemProviderAdapterFactory()This constructs an instance. -
Method Summary
Modifier and Type Method Description java.lang.Objectadapt(java.lang.Object object, java.lang.Object type)Adapteradapt(Notifier notifier, java.lang.Object type)This implementation substitutes the factory itself as the key for the adapter.voidaddListener(INotifyChangedListener notifyChangedListener)This adds a listener.protected voidassociate(Adapter adapter, Notifier target)Associates an adapter with a notifier via the base implementation, then records it to ensure it will be disposed.AdaptercreateAttributeChangeAdapter()This creates an adapter for aAttributeChange.AdaptercreateComparisonAdapter()This creates an adapter for aComparison.AdaptercreateConflictAdapter()This creates an adapter for aConflict.AdaptercreateDiffAdapter()This creates an adapter for aDiff.AdaptercreateEquivalenceAdapter()This creates an adapter for aEquivalence.AdaptercreateFeatureMapChangeAdapter()This creates an adapter for aFeatureMapChange.AdaptercreateMatchAdapter()This creates an adapter for aMatch.AdaptercreateMatchResourceAdapter()This creates an adapter for aMatchResource.AdaptercreateReferenceChangeAdapter()This creates an adapter for aReferenceChange.AdaptercreateResourceAttachmentChangeAdapter()This creates an adapter for aResourceAttachmentChange.AdaptercreateResourceLocationChangeAdapter()This creates an adapter for aResourceLocationChange.voiddispose()This disposes all of the item providers created by this factory.voidfireNotifyChanged(Notification notification)This delegates tochangeNotifierand toparentAdapterFactory.ComposeableAdapterFactorygetRootAdapterFactory()This returns the root adapter factory that contains this factory.booleanisFactoryForType(java.lang.Object type)voidremoveListener(INotifyChangedListener notifyChangedListener)This removes a listener.voidsetParentAdapterFactory(ComposedAdapterFactory parentAdapterFactory)This sets the composed adapter factory that contains this factory.Methods inherited from class org.eclipse.emf.compare.util.CompareAdapterFactory
createAdapter, createEObjectAdapterMethods inherited from class org.eclipse.emf.common.notify.impl.AdapterFactoryImpl
adaptAllNew, adaptNew, createAdapter, resolve
-
Field Details
-
copyright
public static final java.lang.String copyright- See Also:
- Constant Field Values
- Generated:
-
parentAdapterFactory
This keeps track of the root adapter factory that delegates to this adapter factory.- Generated:
-
changeNotifier
This is used to implementIChangeNotifier.- Generated:
-
disposable
This keeps track of all the item providers created, so that they can bedisposed.- Since:
- 4.0
- Generated:
-
supportedTypes
protected java.util.Collection<java.lang.Object> supportedTypesThis keeps track of all the supported types checked byisFactoryForType.- Generated:
-
-
Constructor Details
-
CompareItemProviderAdapterFactory
public CompareItemProviderAdapterFactory()This constructs an instance.- Generated:
-
-
Method Details
-
createComparisonAdapter
This creates an adapter for aComparison.- Overrides:
createComparisonAdapterin classCompareAdapterFactory- Returns:
- the new adapter.
- See Also:
Comparison- Generated:
-
createMatchResourceAdapter
This creates an adapter for aMatchResource.- Overrides:
createMatchResourceAdapterin classCompareAdapterFactory- Returns:
- the new adapter.
- See Also:
MatchResource- Generated:
-
createMatchAdapter
This creates an adapter for aMatch.- Overrides:
createMatchAdapterin classCompareAdapterFactory- Returns:
- the new adapter.
- See Also:
Match- Generated:
-
createDiffAdapter
This creates an adapter for aDiff.- Overrides:
createDiffAdapterin classCompareAdapterFactory- Returns:
- the new adapter.
- See Also:
Diff- Generated:
-
createResourceAttachmentChangeAdapter
This creates an adapter for aResourceAttachmentChange.- Overrides:
createResourceAttachmentChangeAdapterin classCompareAdapterFactory- Returns:
- the new adapter.
- See Also:
ResourceAttachmentChange- Generated:
-
createResourceLocationChangeAdapter
This creates an adapter for aResourceLocationChange.- Overrides:
createResourceLocationChangeAdapterin classCompareAdapterFactory- Returns:
- the new adapter.
- See Also:
ResourceLocationChange- Generated:
-
createReferenceChangeAdapter
This creates an adapter for aReferenceChange.- Overrides:
createReferenceChangeAdapterin classCompareAdapterFactory- Returns:
- the new adapter.
- See Also:
ReferenceChange- Generated:
-
createAttributeChangeAdapter
This creates an adapter for aAttributeChange.- Overrides:
createAttributeChangeAdapterin classCompareAdapterFactory- Returns:
- the new adapter.
- See Also:
AttributeChange- Generated:
-
createFeatureMapChangeAdapter
This creates an adapter for aFeatureMapChange.- Overrides:
createFeatureMapChangeAdapterin classCompareAdapterFactory- Returns:
- the new adapter.
- See Also:
FeatureMapChange- Generated:
-
createConflictAdapter
This creates an adapter for aConflict.- Overrides:
createConflictAdapterin classCompareAdapterFactory- Returns:
- the new adapter.
- See Also:
Conflict- Generated:
-
createEquivalenceAdapter
This creates an adapter for aEquivalence.- Overrides:
createEquivalenceAdapterin classCompareAdapterFactory- Returns:
- the new adapter.
- See Also:
Equivalence- Generated:
-
getRootAdapterFactory
This returns the root adapter factory that contains this factory.- Specified by:
getRootAdapterFactoryin interfaceComposeableAdapterFactory- Generated:
-
setParentAdapterFactory
This sets the composed adapter factory that contains this factory.- Specified by:
setParentAdapterFactoryin interfaceComposeableAdapterFactory- Generated:
-
isFactoryForType
public boolean isFactoryForType(java.lang.Object type)- Specified by:
isFactoryForTypein interfaceAdapterFactory- Overrides:
isFactoryForTypein classCompareAdapterFactory- Returns:
- whether this factory is applicable for the type of the object.
- Generated:
-
adapt
This implementation substitutes the factory itself as the key for the adapter.- Specified by:
adaptin interfaceAdapterFactory- Overrides:
adaptin classAdapterFactoryImpl- Generated:
-
adapt
public java.lang.Object adapt(java.lang.Object object, java.lang.Object type)- Specified by:
adaptin interfaceAdapterFactory- Overrides:
adaptin classAdapterFactoryImpl- Generated:
-
associate
Associates an adapter with a notifier via the base implementation, then records it to ensure it will be disposed.- Overrides:
associatein classAdapterFactoryImpl- Generated:
-
addListener
This adds a listener.- Specified by:
addListenerin interfaceIChangeNotifier- Generated:
-
removeListener
This removes a listener.- Specified by:
removeListenerin interfaceIChangeNotifier- Generated:
-
fireNotifyChanged
This delegates tochangeNotifierand toparentAdapterFactory.- Specified by:
fireNotifyChangedin interfaceIChangeNotifier- Generated:
-
dispose
public void dispose()This disposes all of the item providers created by this factory.- Specified by:
disposein interfaceIDisposable- Generated:
-