Checks if the specified character is an XML first-letter. @param cp codepoint of the character @return result of check
(final int cp)
| 168 | * @return result of check |
| 169 | */ |
| 170 | public static boolean isStartChar(final int cp) { |
| 171 | return isNCStartChar(cp) || cp == ':'; |
| 172 | } |
| 173 | |
| 174 | /** |
| 175 | * Checks if the specified character is an XML letter. |