Interface AttributeCopier<T>

All Known Implementing Classes:
CollectionAttributeCopier, CopyConstructorAttributeCopier, IdentityAttributeCopier, SimpleInstanceAttributeCopier, TypedPropertiesAttributeCopier

public interface AttributeCopier<T>
AttributeCopier. Usually an attribute is copied by using the Object.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

    Modifier and Type
    Method
    Description
    copyAttribute(T attribute)
     
  • Method Details

    • copyAttribute

      T copyAttribute(T attribute)