Add a "set next" rule for the specified parameters. @param pattern Element matching pattern @param methodName Method name to call on the parent element @param paramType Java class name of the expected parameter type (if you wish to use a primitive type, specify the corresp
(String pattern, String methodName, String paramType)
| 1809 | * @see SetNextRule |
| 1810 | */ |
| 1811 | public void addSetNext(String pattern, String methodName, String paramType) { |
| 1812 | |
| 1813 | addRule(pattern, new SetNextRule(methodName, paramType)); |
| 1814 | |
| 1815 | } |
| 1816 | |
| 1817 | |
| 1818 | /** |
no test coverage detected