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.factories; /* w ww . j a v a 2 s. c o m*/ import com.tonydicola.smartshaker.interfaces.DrinkProvider; public enum DrinkFactory { INSTANCE; private DrinkProvider provider = null; public DrinkProvider getProvider() { return provider; } public void setProvider(DrinkProvider provider) { this.provider = provider; } }