(final String source)
| 76 | } |
| 77 | |
| 78 | public static ParameterTree makeTree(final String source) throws ParseException |
| 79 | { |
| 80 | final Matcher mat = ParameterTree.pat.matcher(source); |
| 81 | |
| 82 | if (mat.find()) |
| 83 | { |
| 84 | return makeTree(source, false); |
| 85 | } |
| 86 | else |
| 87 | { |
| 88 | return new ParameterTree(source); |
| 89 | } |
| 90 | } |
| 91 | |
| 92 | private static ParameterTree makeTree(final String source, final boolean operatorNeeded) throws ParseException |
| 93 | { |