Checks if the specified character is an XML letter. @param cp codepoint of the character @return result of check
(final int cp)
| 177 | * @return result of check |
| 178 | */ |
| 179 | public static boolean isChar(final int cp) { |
| 180 | return isNCChar(cp) || cp == ':'; |
| 181 | } |
| 182 | |
| 183 | /** |
| 184 | * Checks if the specified token is a valid NCName. |