Package com.cedarsoft.business.contact

Examples of com.cedarsoft.business.contact.City


   * @return the first city for the given postal code
   */
  @NotNull
  public City getCity( @NotNull @NonNls String postalCode ) {
    String cityName = getCityNames( postalCode ).iterator().next();
    return new City( postalCode, cityName );
  }
View Full Code Here


   * @return the first city for the given postal code
   */
  @NotNull
  public City getCity( @NotNull @NonNls String postalCode ) {
    String cityName = getCityNames( postalCode ).iterator().next();
    return new City( postalCode, cityName );
  }
View Full Code Here

   * @return the first city for the given postal code
   */
  @Nonnull
  public City getCity( @Nonnull  String postalCode ) {
    String cityName = getCityNames( postalCode ).iterator().next();
    return new City( postalCode, cityName );
  }
View Full Code Here

TOP

Related Classes of com.cedarsoft.business.contact.City

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.