Messages.java :  » Map » osmand » net » osmand » Android Open Source

Android Open Source » Map » osmand 
osmand » net » osmand » Messages.java
package net.osmand;

import java.util.ResourceBundle;

public class Messages {

  private static ResourceBundle bundle = ResourceBundle.getBundle("messages"); //$NON-NLS-1$
  public static final String KEY_M = "m"; //$NON-NLS-1$
  public static final String KEY_KM = "km"; //$NON-NLS-1$
  public static final String KEY_KM_H = "km_h"; //$NON-NLS-1$

  public static String getMessage(String key){
    return bundle.getString(key);
  }

}
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.