
link.jfire.baseutil.copy.field.impl.LongField Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jfire-baseutil Show documentation
Show all versions of jfire-baseutil Show documentation
jfire-baseutil is common jar dependency of jfire J2EE package
The newest version!
package link.jfire.baseutil.copy.field.impl;
import java.lang.reflect.Field;
public class LongField extends ObjectCopyField
{
public LongField(Field srcField, Field targetField)
{
super(srcField, targetField);
}
@SuppressWarnings("restriction")
public void copy(Object src, Object target)
{
unsafe.putLong(target, targetOffset, unsafe.getLong(src, srcOffset));
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy