MCPcopy Create free account
hub / github.com/Anchals24/Low-Level-Design / Pizza

Class Pizza

SimpleFactoryPattern/WithoutFactoryPattern/Pizza.java:3–10  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

1package CreationalDesignPattern.FactoryPattern.SimpleFactoryPattern.WithoutFactoryPattern;
2
3abstract public class Pizza {
4
5 abstract public void prepare();
6 abstract public void bake();
7 abstract public void cut();
8 abstract public void pack();
9
10}

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected