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

net.sf.javagimmicks.util.Consumer Maven / Gradle / Ivy

There is a newer version: 0.99-alpha1
Show newest version
package net.sf.javagimmicks.util;

/**
 * A generic interface for objects that can consumer other objects.
 * 
 * @param 
 *           the type of object(s) to consume
 */
public interface Consumer
{
   /**
    * Consumes the given object.
    * 
    * @param instance
    *           the object to consume
    */
   void accept(E instance);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy