1 16 17 package com.google.gwt.sample.i18n.client; 18 19 import com.google.gwt.i18n.client.ConstantsWithLookup; 20 21 25 public interface ColorConstants extends ConstantsWithLookup { 26 27 String black(); 28 29 String blue(); 30 31 String green(); 32 33 String grey(); 34 35 String lightGrey(); 36 37 String red(); 38 39 String white(); 40 41 String yellow(); 42 43 } 44 | Popular Tags |