Get a resource from the GATE ClassLoader as a String. @param resourceName The resource to input.
(String resourceName)
| 126 | * @param resourceName The resource to input. |
| 127 | */ |
| 128 | public static String getResourceAsString(String resourceName) |
| 129 | throws IOException { |
| 130 | return getResourceAsString(resourceName, null); |
| 131 | } |
| 132 | |
| 133 | /** Get a resource from the GATE ClassLoader as a String. |
| 134 | * @param encoding The encoding of the reader used to input the file |
nothing calls this directly
no test coverage detected