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; /** * Created by Tony on 2/22/14. */ public interface PreparationStep { public String getInstructions(); public Double getMeasureGrams(); public Double getGramsPerOz(); }