Add code allowing text-changing effects (+some cleanup).

This commit is contained in:
elcnesh
2014-08-11 09:22:18 +00:00
parent 2168779735
commit 0d534be21e
24 changed files with 564 additions and 65 deletions

View File

@@ -178,4 +178,9 @@ public class TextUtil {
}
return builder.toString();
}
public static String capitalize(final String s) {
return s.substring(0, 1).toUpperCase()
+ s.substring(1);
}
}