org.apache.tools.ant.filters

Class TokenFilter.ReplaceString

public static class TokenFilter.ReplaceString extends TokenFilter.ChainableReaderFilter

Simple replace string filter.
Method Summary
Stringfilter(String line)
Filter a string 'line' replacing from with to (C&P from the Replace task)
voidsetFrom(String from)
the from attribute
voidsetTo(String to)
the to attribute

Method Detail

filter

public String filter(String line)
Filter a string 'line' replacing from with to (C&P from the Replace task)

Parameters: line the string to be filtered

Returns: the filtered line

setFrom

public void setFrom(String from)
the from attribute

Parameters: from the string to replace

setTo

public void setTo(String to)
the to attribute

Parameters: to the string to replace 'from' with