Back to project page SmartCocktailShaker.
The source code is released under:
MIT License
If you think the Android project SmartCocktailShaker listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.tonydicola.smartshaker.interfaces; /* w w w. j a v a 2 s . c o m*/ import java.util.List; /** * Created by Tony on 2/22/14. */ public interface Drink { public String getName(); public String getDescription(); public List<PreparationStep> getPreparation(); }