package org.liveSense.server.i18n.constants; import com.google.gwt.i18n.client.Constants; import java.util.Map; public interface FooConstants extends Constants { String test_String(); int test_int(); Integer test_Integer(); float test_float(); Float test_Float(); double test_double(); Double test_Double(); boolean test_boolean(); Boolean test_Boolean(); String[] test_StringArray(); Map<String,String> test_MapStringString(); }