Back to project page AUXManager.
The source code is released under:
GNU General Public License
If you think the Android project AUXManager 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.easysoft.auxmanager.activity.profile; /*from w w w. ja v a 2 s. c o m*/ import java.util.HashSet; import java.util.Set; /** * Represents SharedData for Profiles * <p/> * <br/><i>Created at 7/6/2014 10:57 PM, user: mishalov</i> * * @author Michael Mishalov * @since Android SDK 4.1, JDK 1.7 */ public class ProfileSharedData { ////////////////////////////////////////////////////[VARIABLES]//////////////////////////////////////////////////// private String profileName; private boolean speakersOn; private Set<String> selectedApplications = new HashSet<>(); /////////////////////////////////////////////////////[METHODS]///////////////////////////////////////////////////// public boolean isSpeakersOn() { return speakersOn; } public void setSpeakersOn(boolean speakersOn) { this.speakersOn = speakersOn; } public Set<String> getSelectedApplications() { return selectedApplications; } public void setSelectedApplications(Set<String> selectedApplications) { this.selectedApplications = selectedApplications; } public void addSelectedApplication(String packageName){ selectedApplications.add(packageName); } public String getProfileName() { return profileName; } public void setProfileName(String profileName) { this.profileName = profileName; } }