CVSpublic class CVS extends Object Contains all the strings used in the ChessViewer package that need localization... |
Methods Summary |
---|
public static java.lang.String | Insert(java.lang.String template, java.lang.String snippet)Helper method for sticking variables into the string.
Searches the string for a % and then substitutes the variable
int index = template.indexOf('%") ;
return template.substring(0, index) + snippet + template.substring(index+1);
| public static java.lang.String | Insert(java.lang.String template, java.lang.String snippet1, java.lang.String snippet2)Helper method for sticking variables into the string.
Searches the string for a % and then substitutes the variable
return Insert(Insert(template, snippet1), snippet2);
|
|