Package com.iizigo.term.capture
Class CaptureAdapterFactory
java.lang.Object
com.iizigo.term.capture.CaptureAdapterFactory
- All Implemented Interfaces:
- IAdapterFactory
Factory for Designer Props for EE/EEM files.
- Author:
- Christopher Mindus
- Field Summary- Fields inherited from interface org.eclipse.core.runtime.IAdapterFactory- SERVICE_PROPERTY_ADAPTABLE_CLASS, SERVICE_PROPERTY_ADAPTER_NAMES
- Method SummaryModifier and TypeMethodDescription- <T> T- getAdapter- (Object adaptableObject, Class<T> adapterType) Returns an object which is an instance of the given class associated with the given object.- Class<?>[]Returns the collection of adapter types handled by this factory.- static final voidInitializes the adapter factory.
- Method Details- initializepublic static final void initialize()Initializes the adapter factory.
- getAdapterListReturns the collection of adapter types handled by this factory.- Specified by:
- getAdapterListin interface- IAdapterFactory
 
- getAdapterReturns an object which is an instance of the given class associated with the given object. Returns- nullif no such object can be found.- Specified by:
- getAdapterin interface- IAdapterFactory
- Parameters:
- adaptableObject- The adaptable object being queried (usually an instance of- IAdaptable).
- adapterType- The type of adapter to look up.
- Returns:
- A object castable to the given adapter type, or nullif this adapter factory does not have an adapter of the given type for the given object.