Browse Source

Move regex replace and support into the text manipulation package

git-svn-id: https://svn.apache.org/repos/asf/ant/core/trunk@270482 13f79535-47bb-0310-9956-ffa450edef68
master
Peter Donald 23 years ago
parent
commit
372c76b409
4 changed files with 6 additions and 6 deletions
  1. +1
    -2
      proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/text/ReplaceRegExp.java
  2. +2
    -1
      proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/text/Substitution.java
  3. +1
    -2
      proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/text/ReplaceRegExp.java
  4. +2
    -1
      proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/text/Substitution.java

proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/optional/ReplaceRegExp.java → proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/text/ReplaceRegExp.java View File

@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.tools.ant.taskdefs.optional;
package org.apache.tools.ant.taskdefs.text;

import java.io.BufferedReader;
import java.io.BufferedWriter;
@@ -21,7 +21,6 @@ import org.apache.tools.ant.DirectoryScanner;
import org.apache.tools.ant.Task;
import org.apache.tools.ant.types.FileSet;
import org.apache.tools.ant.types.RegularExpression;
import org.apache.tools.ant.types.Substitution;
import org.apache.tools.ant.util.regexp.Regexp;

/**

proposal/myrmidon/src/main/org/apache/tools/ant/types/Substitution.java → proposal/myrmidon/src/main/org/apache/tools/ant/taskdefs/text/Substitution.java View File

@@ -5,11 +5,12 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.tools.ant.types;
package org.apache.tools.ant.taskdefs.text;

import java.util.Stack;
import org.apache.myrmidon.api.TaskException;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.types.DataType;

/**
* A regular expression substitution datatype. It is an expression that is meant

proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/optional/ReplaceRegExp.java → proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/text/ReplaceRegExp.java View File

@@ -5,7 +5,7 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.tools.ant.taskdefs.optional;
package org.apache.tools.ant.taskdefs.text;

import java.io.BufferedReader;
import java.io.BufferedWriter;
@@ -21,7 +21,6 @@ import org.apache.tools.ant.DirectoryScanner;
import org.apache.tools.ant.Task;
import org.apache.tools.ant.types.FileSet;
import org.apache.tools.ant.types.RegularExpression;
import org.apache.tools.ant.types.Substitution;
import org.apache.tools.ant.util.regexp.Regexp;

/**

proposal/myrmidon/src/todo/org/apache/tools/ant/types/Substitution.java → proposal/myrmidon/src/todo/org/apache/tools/ant/taskdefs/text/Substitution.java View File

@@ -5,11 +5,12 @@
* version 1.1, a copy of which has been included with this distribution in
* the LICENSE.txt file.
*/
package org.apache.tools.ant.types;
package org.apache.tools.ant.taskdefs.text;

import java.util.Stack;
import org.apache.myrmidon.api.TaskException;
import org.apache.tools.ant.Project;
import org.apache.tools.ant.types.DataType;

/**
* A regular expression substitution datatype. It is an expression that is meant

Loading…
Cancel
Save