List of usage examples for com.google.gwt.i18n.client ConstantsWithLookup getInt
int getInt(String methodName) throws MissingResourceException;
int
by method name. From source file:org.broadleafcommerce.openadmin.client.MessageManager.java
License:Apache License
@Override public int getInt(String methodName) throws MissingResourceException { MissingResourceException backup = null; for (int j = constants.size() - 1; j >= 0; j--) { ConstantsWithLookup constant = constants.get(j); try {/*from w ww.j a v a 2 s .com*/ int temp = constant.getInt(methodName); return temp; } catch (MissingResourceException e) { backup = e; } } throw backup; }