Filter the supplied string according to the current output filter. This can do things such as escaping HTML entities. @param aString The string to be filtered @return The filtered string.
(String aString)
| 50 | * @return The filtered string. |
| 51 | */ |
| 52 | public static String filterString(String aString) |
| 53 | { |
| 54 | String outputString = aString; |
| 55 | if (outputFilter != null) |
| 56 | { |
| 57 | outputString = outputFilter.filterString(aString); |
| 58 | } |
| 59 | return outputString; |
| 60 | } |
| 61 | |
| 62 | /** |
| 63 | * Set the current output filter. The current output filter will be |
no test coverage detected