blob: 074705ba7414c3146f649e94cba040243f752aec [file] [log] [blame]
// Copyright 2006 Google Inc. All Rights Reserved.
package com.google.gwt.examples.i18n;
import com.google.gwt.i18n.client.Constants;
public interface NumberFormatConstantsAnnot extends Constants {
/**
* @return the localized decimal separator
*/
@DefaultStringValue(".")
String decimalSeparator();
/**
* @return the localized thousands separator
*/
@DefaultStringValue(",")
String thousandsSeparator();
}