43444546474849
* * @param profile * The profile to add. */ public void addProfile(String profile) { profileSet.addProfile(new BasicProfile(profile)); }
5455565758596061
* @param profiles * The array of profiles to add. */ public void addProfiles(String[] profiles) { for (int i = 0; i < profiles.length; i++) { profileSet.addProfile(new BasicProfile(profiles[i])); } }