Back to project page My-Team--Your-Team.
The source code is released under:
MIT License
If you think the Android project My-Team--Your-Team 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.selesse.apps.model; //from w ww. j a v a2 s .c o m public enum Team { MY_TEAM("MonEquipe"), YOUR_TEAM("TonEquipe"); private String directory; Team(String directory) { this.directory = directory; } public String getDirectory() { return directory; } }