MCPcopy Create free account
hub / github.com/PCGen/pcgen / filterString

Method filterString

code/src/java/pcgen/io/FileAccess.java:52–60  ·  view source on GitHub ↗

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)

Source from the content-addressed store, hash-verified

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

Callers 5

getFollowerListTokenMethod · 0.95
wrapMethod · 0.95
getExportStringMethod · 0.95
encodeWriteMethod · 0.95
getTokenMethod · 0.95

Calls 1

filterStringMethod · 0.65

Tested by

no test coverage detected