Flex Patterns: Presentation Adapter Encapsulate the logic for presenting a domain object, and provide an object for skinny views to perform data-binding against. Problem When using Presentation Model our goal is to bind UI elements in your Skinny View directly to individual components of the Presentation Model. This requires translating information in Domain Model instances into a presentation-specific form. At the same time we need to be able to map back from that presentation-specific form ...