@author Svetlin Ankov
| 10 | * @author Svetlin Ankov <galileostudios@gmail.com> |
| 11 | */ |
| 12 | public interface HTMLSubstitues { |
| 13 | /* |
| 14 | * Using specially reserved chars from the BMP |
| 15 | */ |
| 16 | public static final char START_TAG_CHAR = '\ufdd0'; |
| 17 | public static final int START_TAG_INT = 0xfdd0; |
| 18 | |
| 19 | public static final char END_TAG_CHAR = '\ufdd1'; |
| 20 | public static final int END_TAG_INT = 0xfdd1; |
| 21 | } |
nothing calls this directly
no outgoing calls
no test coverage detected