arp.repository.copy.BaseFieldCopier Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ARP Show documentation
Show all versions of ARP Show documentation
a java development framework with aggregation, repository and process
The newest version!
package arp.repository.copy;
import java.lang.reflect.Field;
import arp.util.Unsafe;
public abstract class BaseFieldCopier implements FieldCopier {
protected long fieldOffset;
public BaseFieldCopier(Field field) {
fieldOffset = Unsafe.getFieldOffset(field);
}
}