jpower.core.TaskFactory Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of JPower Show documentation
Show all versions of JPower Show documentation
Powerful Library for the JVM
package jpower.core;
public class TaskFactory implements Factory
{
private final Task original;
public TaskFactory(Task original)
{
this.original = original;
}
@Override
public Task create()
{
return original::execute;
}
}