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

com.moon.poi.excel.ProxySetter Maven / Gradle / Ivy

package com.moon.poi.excel;

import java.util.function.Consumer;

/**
 * @author moonsky
 */
abstract class ProxySetter extends BaseProxy implements Consumer {

    protected ProxySetter(K obj) { super(obj); }

    /**
     * set info to t
     *
     * @param t
     */
    abstract void setup(T t);

    /**
     * set info to t
     *
     * @param t
     */
    @Override
    public void accept(T t) { setup(t); }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy