/** 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. */ package com.bikle.recipes; import java.util.*; public class BirthdayCake { /////////////////////////////////////// // attributes private int sugar; private int chocolate; private int eggs; private int flour; /////////////////////////////////////// // operations public void mix() { // your code here } // end mix public void bake() { // your code here } // end bake } // end BirthdayCake