nyla.solutions.commas.CloneableExecutable Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of nyla.solutions.commas Show documentation
Show all versions of nyla.solutions.commas Show documentation
Command pattern implementation for building services.
The newest version!
package nyla.solutions.commas;
public interface CloneableExecutable extends Cloneable, Executable
{
/**
*
* @return the clone
*/
public Object clone()
throws CloneNotSupportedException;
}