blob: 735c20a9d89aec04d11b521278ab3c2dc6b7f4f8 [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 NumberFormatConstantsWithAltKey extends Constants {
/**
* Returns the localized decimal separator.
*/
@Key("fmt.sep.decimal")
String decimalSeparator();
/**
* Returns the localized thousands separator.
*/
@Key("fmt.sep.thousands")
String thousandsSeparator();
}