Interface ManagedObjectExtensionMetaData<E>
-
- All Known Implementing Classes:
ManagedObjectExtensionMetaDataImpl
public interface ManagedObjectExtensionMetaData<E>Meta-data regarding an extension interface implemented by theManagedObject.- Author:
- Daniel Sagenschneider
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description ExtensionFactory<E>getExtensionFactory()Obtains theExtensionFactoryto create the extension for theManagedObject.java.lang.Class<E>getExtensionType()Obtains the type of extension.
-
-
-
Method Detail
-
getExtensionType
java.lang.Class<E> getExtensionType()
Obtains the type of extension.- Returns:
Classrepresenting the type of extension.
-
getExtensionFactory
ExtensionFactory<E> getExtensionFactory()
Obtains theExtensionFactoryto create the extension for theManagedObject.- Returns:
ExtensionFactoryto create the extension for theManagedObject.
-
-