Home | History | Annotate | Download | only in runtime

Lines Matching refs:fileName

39 	protected String fileName;
41 public ANTLRFileStream(String fileName) throws IOException {
42 this(fileName, null);
45 public ANTLRFileStream(String fileName, String encoding) throws IOException {
46 this.fileName = fileName;
47 load(fileName, encoding);
50 public void load(String fileName, String encoding)
53 if ( fileName==null ) {
56 File f = new File(fileName);
59 FileInputStream fis = new FileInputStream(fileName);
76 return fileName;