| org.apache.harmony.luni.platform.IAdapterFactory
IAdapterFactory | public interface IAdapterFactory (Code) | | IAdapterFactory
|
Method Summary | |
public Object | getAdapter(IAdaptable adaptableObject, Class adapterType) Answer the adapter of the given type for the given object.
Parameters: adaptableObject - the object that implements IAdaptable. Parameters: adapterType - the type of adapter to return. | public Class[] | getAdapterList() Answers the adapters that this factory provides. |
getAdapter | public Object getAdapter(IAdaptable adaptableObject, Class adapterType)(Code) | | Answer the adapter of the given type for the given object.
Parameters: adaptableObject - the object that implements IAdaptable. Parameters: adapterType - the type of adapter to return. the adapter of the requested type. |
getAdapterList | public Class[] getAdapterList()(Code) | | Answers the adapters that this factory provides.
the list of adapters as an array of classes. |
|
|