All Downloads are FREE. Search and download functionalities are using the official Maven repository.

arp.repository.copy.BaseFieldCopier Maven / Gradle / Ivy

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);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy