WhereOnEarthId.java :  » Client » jfireeagle » jfireeagle » Android Open Source

Android Open Source » Client » jfireeagle 
jfireeagle » jfireeagle » WhereOnEarthId.java

package jfireeagle;

/**
 * 
 * Where On Earth Id (WOEID)
 * 
 * @see http://geobloggers.com/2008/05/12/yahoo-woe-where-on-earth-that-is-ids/
 *
 */
public class WhereOnEarthId
  implements java.io.Serializable
{
  private String value;
  private boolean exactMatch = false;
  
  public WhereOnEarthId(String s)
  {
    this.value = s;
  }
  
  public String getValue()
  {
    return value;
  }
  
  public String toString()
  {
    return this.getValue();
  }

  public boolean isExactMatch()
  {
    return exactMatch;
  }

  public void setExactMatch(boolean b)
  {
    this.exactMatch = b;
  }
  
}
java2s.com  | Contact Us | Privacy Policy
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.