<substitition [ [id="id"] expression="expression" | refid="id" ] />
177178179180181182183184
if (subs != null) { throw new BuildException("Only one substitution expression is " + "allowed"); } subs = new Substitution(); subs.setExpression(replace); }
280281282283284285286287
if (subs != null) { throw new BuildException("Only one substitution expression is " + "allowed"); } subs = new Substitution(); return subs; }
202203204205206207208209
273274275276277278279280
279280281282283284285286
619620621622623624625626
regularExpression.setPattern(from); regexp = regularExpression.getRegexp(getProject()); if (to == null) { to = ""; } substitution = new Substitution(); substitution.setExpression(to); }
688689690691692693694695
regularExpression.setPattern(from); regexp = regularExpression.getRegexp(project); if (to == null) { return; } substitution = new Substitution(); substitution.setExpression(to); }
481482483484485486487488
549550551552553554555556
regularExpression.setPattern(from); regexp = regularExpression.getRegexp(getProject()); if (to == null) { return; } substitution = new Substitution(); substitution.setExpression(to); }