Package org.eclipse.emf.compare.provider
Class AdapterFactoryUtil
java.lang.Object
org.eclipse.emf.compare.provider.AdapterFactoryUtil
@Deprecated
public final class AdapterFactoryUtil
extends java.lang.Object
Deprecated.
Use
AdapterFactoryItemDelegator instead.Some utility methods to work with
AdapterFactory.-
Method Summary
Modifier and Type Method Description static java.lang.ObjectgetImage(AdapterFactory adapterFactory, java.lang.Object object)Deprecated.Returns the image of the givenobjectby adapting it toIItemLabelProviderand asking for itsimage.static java.lang.ObjectgetStyledText(AdapterFactory adapterFactory, java.lang.Object object)Deprecated.Returns the StyledText for the given object and the given adapter factory.static java.lang.StringgetText(AdapterFactory adapterFactory, java.lang.Object object)Deprecated.
-
Method Details
-
getText
Deprecated.Returns the text of the givenobjectby adapting it toIItemLabelProviderand asking for itstext. Returns null ifobjectis null.- Parameters:
adapterFactory- the adapter factory to adapt fromobject- the object from which we want a text- Returns:
- the text, or null if object is null.
- Throws:
java.lang.NullPointerException- ifadapterFactoryis null.
-
getImage
Deprecated.Returns the image of the givenobjectby adapting it toIItemLabelProviderand asking for itsimage. Returns null ifobjectis null.- Parameters:
adapterFactory- the adapter factory to adapt fromobject- the object from which we want a image- Returns:
- the image, or null if object is null.
- Throws:
java.lang.NullPointerException- ifadapterFactoryis null.
-
getStyledText
public static java.lang.Object getStyledText(AdapterFactory adapterFactory, java.lang.Object object)Deprecated.Returns the StyledText for the given object and the given adapter factory.- Parameters:
adapterFactory- the given adapter factory.object- the given object.- Returns:
- the StyledText as an Object.
- Since:
- 4.0
-