| 1 | |
|
| 2 | |
|
| 3 | |
|
| 4 | |
|
| 5 | |
|
| 6 | |
|
| 7 | |
|
| 8 | |
|
| 9 | |
|
| 10 | |
|
| 11 | |
|
| 12 | |
|
| 13 | |
|
| 14 | |
|
| 15 | |
|
| 16 | |
package org.dozer.propertydescriptor; |
| 17 | |
|
| 18 | |
import org.dozer.fieldmap.HintContainer; |
| 19 | |
import org.dozer.util.DozerConstants; |
| 20 | |
import org.dozer.util.MappingUtils; |
| 21 | |
|
| 22 | |
|
| 23 | |
|
| 24 | |
|
| 25 | |
|
| 26 | |
|
| 27 | |
|
| 28 | |
public abstract class AbstractPropertyDescriptor implements DozerPropertyDescriptor { |
| 29 | |
protected final Class<?> clazz; |
| 30 | |
protected final String fieldName; |
| 31 | 59731 | protected boolean isIndexed = false; |
| 32 | |
protected int index; |
| 33 | |
protected HintContainer srcDeepIndexHintContainer; |
| 34 | |
protected HintContainer destDeepIndexHintContainer; |
| 35 | |
|
| 36 | |
|
| 37 | |
public AbstractPropertyDescriptor(final Class<?> clazz, final String fieldName, boolean isIndexed, int index, |
| 38 | 59731 | HintContainer srcDeepIndexHintContainer, HintContainer destDeepIndexHintContainer) { |
| 39 | 59731 | this.clazz = clazz; |
| 40 | 59731 | this.fieldName = fieldName; |
| 41 | 59731 | this.isIndexed = isIndexed; |
| 42 | 59731 | this.index = index; |
| 43 | 59731 | this.srcDeepIndexHintContainer = srcDeepIndexHintContainer; |
| 44 | 59731 | this.destDeepIndexHintContainer = destDeepIndexHintContainer; |
| 45 | 59731 | } |
| 46 | |
|
| 47 | |
} |