ca.derekcormier.recipe.AbstractOven Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of recipe-java-runtime Show documentation
Show all versions of recipe-java-runtime Show documentation
Java runtime classes for the Recipe framework
package ca.derekcormier.recipe;
public abstract class AbstractOven {
protected Cake createCake() {
return new Cake();
}
}