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; //from w w w. j a va 2s .co m import java.util.Collection; /** * Created by Tony on 2/22/14. */ public interface DrinkProvider { public Collection<String> getDrinkNames(); public Drink getDrink(String name); }