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 theExtensionFactory
to 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:
Class
representing the type of extension.
-
getExtensionFactory
ExtensionFactory<E> getExtensionFactory()
Obtains theExtensionFactory
to create the extension for theManagedObject
.- Returns:
ExtensionFactory
to create the extension for theManagedObject
.
-
-