This acts as a "Null Object" pattern for the ExclusionStrategy. Passing an instance of this class into the ObjectNavigator will make the ObjectNavigator parse/visit every field of the object being navigated. @author Joel Leitch
| 25 | * @author Joel Leitch |
| 26 | */ |
| 27 | final class NullExclusionStrategy implements ExclusionStrategy { |
| 28 | |
| 29 | public boolean shouldSkipField(FieldAttributes f) { |
| 30 | return false; |
| 31 | } |
| 32 | |
| 33 | public boolean shouldSkipClass(Class<?> clazz) { |
| 34 | return false; |
| 35 | } |
| 36 | } |
nothing calls this directly
no outgoing calls
no test coverage detected