Uses of Class
uk.org.ogsadai.activity.files.MalformedReplacementStringException

Packages that use MalformedReplacementStringException
uk.org.ogsadai.activity.files Activities for writing and reading files. 
 

Uses of MalformedReplacementStringException in uk.org.ogsadai.activity.files
 

Methods in uk.org.ogsadai.activity.files that throw MalformedReplacementStringException
 java.lang.String SubstitutionStringParser.readString()
          Return the original string, but with the group variables replaced by the corresponding values from the matched groups of text.
private  java.lang.String SubstitutionStringParser.readChar()
          From the current position in the string, read an instance of the CHAR non-terminal symbol in the grammar.
private  java.lang.String SubstitutionStringParser.readVar()
          From the current position in the string, read an instance of the VAR non-terminal symbol in the grammar.
private  int SubstitutionStringParser.readInt()
          From the current position in the string, read an instance of the INT non-terminal symbol in the grammar.
private  void FileWritingActivity.performPerLineRegexp(java.io.RandomAccessFile raFile, long fileLength)
          Perform a replacement of text within a file, on a per-line basis, locating the text based on matches of a regular expression.
private  void FileWritingActivity.performPerFileRegexp(java.io.RandomAccessFile raFile, long fileLength)
          Perform a replacement of text within a file, on a per-file basis, locating the text based on matches of a regular expression.
private  java.lang.String FileWritingActivity.performSubstitutions(java.lang.String string, AbstractMatcher matcher)
          Return a string equal to the provided string, but with group variables substituted with their actual value, in the context of a particular regular expression match.