blob: 46b797f07a8792b0fa55494891b4da7f2ccd9ab3 [file] [log] [blame]
package com.google.gwt.examples.i18n;
import com.google.gwt.i18n.client.Localizable;
public class ColorNameLookup implements Localizable {
public String lookupColorName(String htmlColorValue) {
return "?unlocalized " + htmlColorValue + "?";
}
}