Searched refs:compoundString (Results 1 – 2 of 2) sorted by relevance
35 public I18Name(String compoundString) throws IOException { in I18Name() argument36 if (compoundString.length() < Constants.LANG_CODE_LENGTH) { in I18Name()37 throw new IOException("I18String too short: '" + compoundString + "'"); in I18Name()39 mLanguage = compoundString.substring(0, Constants.LANG_CODE_LENGTH); in I18Name()40 mText = compoundString.substring(Constants.LANG_CODE_LENGTH); in I18Name()