A mapper is a mechanism that
code that uses such a mapper is more flexible since it only depends on certain interfaces to fullfill its task. when using code that uses a mapper you are very flexible in registering classes for the needed interfaces. you can register default implementations or you can register implementations that should only be picked for certain source types.
the mapper is heavily used in the different abstraction layers (model/view/viewer). each of those layers requires several interfaces and it's up to the application to do the mapping between a required interface and the class implementing this interface.
for example let's take a look at a very simple viewer, which should output the node graph of vvvv (our model) as text like this:
in order to work the viewer needs to know the name to display for each node and if a node has nodes beneath it. note that it doesn't care about the elements in its tree. it is only interested in two interfaces:
when we create this viewer, we need to provide it with the root element (our root node) and a mapper, which knows the mapping from the required interface to the implementing class. this could be the element itself (for example a node implements IEnumerable directly), or it could be some other class (we would call it the view), which for example also enumerates the pins of a node.
how the resulting tree looks like depends entirely on the application defined mappings.
anonymous user login
~3mth ago
~4mth ago
~4mth ago
~4mth ago
~4mth ago
~4mth ago
~4mth ago
~4mth ago
~4mth ago
~5mth ago