Thursday, September 26, 2013

Green Day - With Some Speeches...



package org.nanotek.cms.domain;



/**

 * A contributor interface is primarily designe to identify
 * @author josecanova
 *
 * @param <R> the Resource that have contributed on something.
 * @param <I> the input produced during the contribution.
 */
public interface Contributor<R,I> {

public I contribute(R r);


}