Interface AttributeCopier<T>
-
- All Known Implementing Classes:
CollectionAttributeCopier
,CopyConstructorAttributeCopier
,IdentityAttributeCopier
,SimpleInstanceAttributeCopier
,TypedPropertiesAttributeCopier
public interface AttributeCopier<T>
AttributeCopier. Usually an attribute is copied by using theObject.clone()
method. When this method is not enough, you can provide a custom attribute copier by implementing this interface- Since:
- 7.2
- Author:
- Tristan Tarrant
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description T
copyAttribute(T attribute)
-