Package info.ineighborhood.cardme

Examples of info.ineighborhood.cardme.PhoneNumber


   * @param phoneNumber
   * @param phoneLocation
   * @return phone number
   */
  private static PhoneNumber createPhoneNumber(String phoneNumber, Type phoneLocation){
    PhoneNumber phone = new PhoneNumberImpl();
    phone.addType(phoneLocation);
    phone.setLocalNumber(phoneNumber);
    return phone;

  }
View Full Code Here

TOP

Related Classes of info.ineighborhood.cardme.PhoneNumber

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.