Example usage for com.google.gwt.i18n.client ConstantsWithLookup getFloat

List of usage examples for com.google.gwt.i18n.client ConstantsWithLookup getFloat

Introduction

In this page you can find the example usage for com.google.gwt.i18n.client ConstantsWithLookup getFloat.

Prototype

float getFloat(String methodName) throws MissingResourceException;

Source Link

Document

Look up float by method name.

Usage

From source file:org.broadleafcommerce.openadmin.client.MessageManager.java

License:Apache License

@Override
public float getFloat(String methodName) throws MissingResourceException {
    MissingResourceException backup = null;
    for (int j = constants.size() - 1; j >= 0; j--) {
        ConstantsWithLookup constant = constants.get(j);
        try {//  ww  w  .  ja va 2s  .co  m
            float temp = constant.getFloat(methodName);
            return temp;
        } catch (MissingResourceException e) {
            backup = e;
        }
    }
    throw backup;
}