com.greenpepper.call.Compile Maven / Gradle / Ivy
The newest version!
package com.greenpepper.call;
import com.greenpepper.Statistics;
/**
* Compile class.
*
* @author oaouattara
* @version $Id: $Id
*/
public final class Compile
{
/**
* statistics.
*
* @param stats a {@link com.greenpepper.Statistics} object.
* @return a {@link com.greenpepper.call.Stub} object.
*/
public static Stub statistics(Statistics stats)
{
return new CompileStatistics( stats );
}
private Compile()
{
}
}