public interface IEEFTypeMapper
The type mapper is most frequently used to return the type of the model object when selecting a view object in a workbench part. For example, nodes in a tree may all be TreeObjects in a structured selection. The type mapper will take the tree node and return the type of the model object the node represents.
This interface should not be extended or implemented. New type mapper instances should be created using
AbstractEEFTypeMapper
.
Modifier and Type | Method and Description |
---|---|
java.lang.Class<?> |
mapType(java.lang.Object object)
Map the input object to a domain model type.
|