Tim

Results 7 comments of Tim

@sjaakd @filiphr Not sure if I'm configuring the tests correctly. Let me know if there is any changes. I'm considering adding a mode that will consider only the mapped methods...

Hi, Well mapstruct is principally a code automation process - I don't really want to write the code for basic checks. @Condition should be for semantic checks not basic mapping...

I dont mind looking at this, i'm looking for something similar allowing certain "cells" to be merged and then have the cell layout altered once the handset/device is rotated. E.g....

Hi, Can you add your ViewController as a test case - CardViewControllerDemo? Something like that. Thanks -Tim

Hi, I am ready to submit a pull request. Some comments needed from the community first please: Expected case we want this **(a)**: ``` protected NestedLeaf orderDTOToNestedLeaf(OrderDTO orderDTO) { if...

For reference in a discussion: baseline **(e)**: ``` protected Address orderDTOToAddress(OrderDTO orderDTO) { if ( orderDTO == null ) { return null; } Address address = new Address(); address.setLine1( orderDTO.getLine1()...

The below will be an example of **(c.target.2)** with NullValueCheckStrategy.ALWAYS and NullValueMappingStrategy.RETURN_NULL_ON_ALL_VALUES_NULL. ``` public OrderDTO convertToOrderDTO(Order order) { if ( order == null ) { return null; } String name...