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

org.sfm.reflect.impl.NullSetter Maven / Gradle / Ivy

package org.sfm.reflect.impl;


import org.sfm.reflect.Setter;

public class NullSetter implements Setter {
    @Override
    public void set(T target, P value) throws Exception {
    }
    @Override
    public String toString() {
        return "NullSetter{}";
    }

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy