<substitition [ [id="id"] expression="expression" | refid="id" ] />
200201202203204205206207
if (subs != null) { throw new BuildException("Only one substitution expression is " + "allowed"); } subs = new Substitution(); subs.setExpression(replace); }
271272273274275276277278
if (subs != null) { throw new BuildException("Only one substitution expression is " + "allowed"); } subs = new Substitution(); return subs; }
656657658659660661662663
regularExpression.setPattern(from); regexp = regularExpression.getRegexp(getProject()); if (to == null) { to = ""; } substitution = new Substitution(); substitution.setExpression(to); }
725726727728729730731732
regularExpression.setPattern(from); regexp = regularExpression.getRegexp(project); if (to == null) { return; } substitution = new Substitution(); substitution.setExpression(to); }
211212213214215216217218
294295296297298299300301