Staging
v0.5.1
Raw File
package org.pulloid;

public interface FieldSetter<T> {

	boolean set(T target, Object value);

}
back to top