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

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

The newest version!
package arp.repository.copy;

import java.lang.reflect.Field;

import arp.util.Unsafe;

public class IntFieldCopier extends BaseFieldCopier {

	public IntFieldCopier(Field field) {
		super(field);
	}

	@Override
	public void copyField(Object fromEntity, Object toEntity) {
		Unsafe.copyIntFieldOfObject(fromEntity, toEntity, fieldOffset);
	}

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy