Interface ComponentAdapter<T>

All Known Subinterfaces:
ComponentAdapter<T>
All Known Implementing Classes:
AbstractComponentAdapter, InstanceComponentAdapter, ManageableComponentAdapter, MX4JComponentAdapter

public interface ComponentAdapter<T>
Deprecated.
use ComponentAdapter instead
This is used for backward compatibility, now you are supposed to use ComponentAdapter
Version:
$Id$
Author:
Nicolas Filotto
  • Method Summary

    Modifier and Type
    Method
    Description
    Class<? extends T>
    Deprecated.
    Retrieve the class of the component.
    Deprecated.
    Retrieve the key associated with the component.
  • Method Details

    • getComponentKey

      Object getComponentKey()
      Deprecated.
      Retrieve the key associated with the component.
      Returns:
      the component's key. Should either be a class type (normally an interface) or an identifier that is unique (within the scope of the current Container).
    • getComponentImplementation

      Class<? extends T> getComponentImplementation()
      Deprecated.
      Retrieve the class of the component.
      Returns:
      the component's implementation class. Should normally be a concrete class (ie, a class that can be instantiated).