Runs the macro contained in the string macro on the current thread. Returns any string value returned by the macro, null if the macro does not return a value, or "[aborted]" if the macro was aborted due to an error. The equivalent macro function is eval().
(String macro)
| 215 | "[aborted]" if the macro was aborted due to an error. The |
| 216 | equivalent macro function is eval(). */ |
| 217 | public static String runMacro(String macro) { |
| 218 | return runMacro(macro, ""); |
| 219 | } |
| 220 | |
| 221 | /** Runs the macro contained in the string <code>macro</code> |
| 222 | on the current thread. The optional string argument can be |
no test coverage detected