org.freshvanilla.lang.misc.FieldAccessor Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of com.paremus.dosgi.net Show documentation
Show all versions of com.paremus.dosgi.net Show documentation
An implementation of OSGi Remote Service Admin, enhanced to
provide support for OSGi Promises and streaming using OSGi
PushStreams.
The newest version!
package org.freshvanilla.lang.misc;
public interface FieldAccessor {
public T getField(Pojo pojo);
public boolean getBoolean(Pojo pojo);
public long getNum(Pojo pojo);
public double getDouble(Pojo pojo);
public void setField(Pojo pojo, T value);
public void setBoolean(Pojo pojo, boolean value);
public void setNum(Pojo pojo, long value);
public void setDouble(Pojo pojo, double value);
}