Classes in this File | Line Coverage | Branch Coverage | Complexity | ||||
Entities |
|
| 1.0;1 |
1 | package net.sf.jolene.constants; | |
2 | ||
3 | /** | |
4 | * Simple defines of common HTML entities. | |
5 | * @author Dan Howard | |
6 | * @since Jun 16, 2008 6:28:58 AM | |
7 | */ | |
8 | public class Entities { | |
9 | ||
10 | public static final String space = " "; | |
11 | public static final String quote = """; | |
12 | public static final String ampersand = "&"; | |
13 | public static final String lessthan = "<"; | |
14 | public static final String greaterthan = ">"; | |
15 | ||
16 | 0 | private Entities() { |
17 | 0 | } |
18 | } |