Class Native2AsciiFilter
java.lang.Object
org.apache.tools.ant.ProjectComponent
org.apache.tools.ant.filters.TokenFilter.ChainableReaderFilter
org.apache.tools.ant.filters.Native2AsciiFilter
- All Implemented Interfaces:
Cloneable, ChainableReader, TokenFilter.Filter
A filter that performs translations from characters to their
Unicode-escape sequences and vice-versa.
- Since:
- Ant 1.9.8
-
Field Summary
Fields inherited from class ProjectComponent
description, location, project -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionfilter and/of modify a stringvoidsetReverse(boolean reverse) Flag the conversion to run in the reverse sense, that is Ascii to Native encoding.Methods inherited from class TokenFilter.ChainableReaderFilter
chain, setByLineMethods inherited from class ProjectComponent
clone, getDescription, getLocation, getProject, log, log, setDescription, setLocation, setProjectModifier and TypeMethodDescriptionclone()Returns the description of the current action.Returns the file/location where this task was defined.Returns the project to which this component belongs.voidLogs a message with the default (INFO) priority.voidLogs a message with the given priority.voidsetDescription(String desc) Sets a description of the current action.voidsetLocation(Location location) Sets the file/location where this task was defined.voidsetProject(Project project) Sets the project object of this component.
-
Constructor Details
-
Native2AsciiFilter
public Native2AsciiFilter()
-
-
Method Details
-
setReverse
public void setReverse(boolean reverse) Flag the conversion to run in the reverse sense, that is Ascii to Native encoding.- Parameters:
reverse- True if the conversion is to be reversed, otherwise false;
-
filter
Description copied from interface:TokenFilter.Filterfilter and/of modify a string- Parameters:
line- the string to filter- Returns:
- the modified string or null if the string did not pass the filter
-