/** Java class "BirthdayCake.java" generated from Poseidon for UML. * Poseidon for UML is developed by <A HREF="http://www.gentleware.com">Gentleware</A>. * Generated with <A HREF="http://jakarta.apache.org/velocity/">velocity</A> template engine. */ import java.util.*; public class BirthdayCake { /////////////////////////////////////// // attributes private int sugar; private int vanilla; private int eggs; private int flour; private int frosting; /////////////////////////////////////// // operations public void mix() { // your code here } // end mix public void bake() { // your code here } // end bake public void frost() { // your code here } // end frost } // end BirthdayCake