Indicates if the provided character can be "typed" in the element. @param c the character @return true if it is accepted
(final char c)
| 189 | * @return {@code true} if it is accepted |
| 190 | */ |
| 191 | protected boolean acceptChar(final char c) { |
| 192 | // This range is this is private use area |
| 193 | // see http://www.unicode.org/charts/PDF/UE000.pdf |
| 194 | return (c < '\uE000' || c > '\uF8FF') && (c == ' ' || !Character.isWhitespace(c)); |
| 195 | } |
| 196 | |
| 197 | /** |
| 198 | * {@inheritDoc} |
nothing calls this directly
no test coverage detected