1 18 package org.apache.tools.ant.util; 19 20 import java.io.IOException ; 21 import java.io.Reader ; 22 import org.apache.tools.ant.ProjectComponent; 23 24 28 public class FileTokenizer extends ProjectComponent implements Tokenizer { 29 30 36 public String getToken(Reader in) throws IOException { 37 return FileUtils.readFully(in); 38 } 39 40 44 public String getPostToken() { 45 return ""; 46 } 47 } 48 | Popular Tags |