atg.cortex
Interface CortexIntrospector

All Known Implementing Classes:
CortexIntrospectorImpl, CortexIntrospectorService

public interface CortexIntrospector

CortexIntrospector is the interface for obtaining the Cortex asssociated with a class. Implementations of CortexIntrospector may use various methods for finding or generating the Cortex


Field Summary
static java.lang.String CLASS_VERSION
          Class version string
 
Method Summary
 Cortex getCortex(java.lang.Class pClass)
          Returns the Cortex associated with the given class.
 void registerCortex(java.lang.Class pClass, Cortex pCortex)
          Registers the specified Cortex for the specified class.
 

Field Detail

CLASS_VERSION

static final java.lang.String CLASS_VERSION
Class version string

See Also:
Constant Field Values
Method Detail

getCortex

Cortex getCortex(java.lang.Class pClass)
Returns the Cortex associated with the given class.

Parameters:
pClass - the class for which a Cortex is to be found
Returns:
the Cortex corresponding to the given class

registerCortex

void registerCortex(java.lang.Class pClass,
                    Cortex pCortex)
Registers the specified Cortex for the specified class.

Parameters:
pClass - the Class with which the specified cortex is to be associated.
pCortex - the Cortex to be associated with the specified class