FileDocCategorySizeDatePackage
FileTokenizer.javaAPI DocApache Ant 1.701534Wed Dec 13 06:16:20 GMT 2006org.apache.tools.ant.util

FileTokenizer

public class FileTokenizer extends org.apache.tools.ant.ProjectComponent implements Tokenizer
Class to read the complete input into a string.
since
Ant 1.7

Fields Summary
Constructors Summary
Methods Summary
public java.lang.StringgetPostToken()
Return the intra-token string

return
an empty string always

        return "";
    
public java.lang.StringgetToken(java.io.Reader in)
Get the complete input as a string

param
in the reader object
return
the complete input
throws
IOException if error reading

        return FileUtils.readFully(in);