Update of /cvsroot/btrwiz/btrwiz/src
In directory usw-pr-cvs1:/tmp/cvs-serv21649
Added Files:
Replacer.java
Log Message:
initial work at code to make the replacements
--- NEW FILE: Replacer.java ---
/**
* Performs replace operations, sending progress reports to the progress page.
*/
public class Replacer{
/** Root Directory for scanning */
private String rootDir;
/** Filters for inclusion. Order Allow, Deny */
private String[] incFilters;
/** Exclude filters */
private String[] excFilters;
/** Text to be found */
private String findText;
/** Text to replace it with */
private String replaceText;
/** true if find/replace are supposed to be processed as regular
* expressions */
private boolean regExp;
}
|