Package org.milyn.profile

Examples of org.milyn.profile.BasicProfile


   *
   * @param profile
   *            The profile to add.
   */
  public void addProfile(String profile) {
    profileSet.addProfile(new BasicProfile(profile));
  }
View Full Code Here


   * @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]));
    }
  }
View Full Code Here

   * @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]));
    }
  }
View Full Code Here

   *
   * @param profile
   *            The profile to add.
   */
  public void addProfile(String profile) {
    profileSet.addProfile(new BasicProfile(profile));
  }
View Full Code Here

TOP

Related Classes of org.milyn.profile.BasicProfile

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.