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

com.feilong.lib.digester3.binder.RuleProvider Maven / Gradle / Ivy

Go to download

feilong is a suite of core and expanded libraries that include utility classes, http, excel,cvs, io classes, and much much more.

There is a newer version: 4.0.8
Show newest version
package com.feilong.lib.digester3.binder;

import com.feilong.lib.digester3.Rule;

/**
 * An object capable of providing instances of {@link Rule}.
 *
 * @param 
 *            The Rule type created by the provider.
 * @since 3.0
 */
public interface RuleProvider {

    /**
     * Provides an instance of {@link Rule}. Must never return null.
     *
     * @return an instance of {@link Rule}.
     */
    R get();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy