(File file, Name origin, long initialTTL)
| 31 | private boolean noExpandGenerate; |
| 32 | |
| 33 | Master(File file, Name origin, long initialTTL) throws IOException { |
| 34 | if (origin != null && !origin.isAbsolute()) { |
| 35 | throw new RelativeNameException(origin); |
| 36 | } |
| 37 | this.file = file; |
| 38 | st = new Tokenizer(file); |
| 39 | this.origin = origin; |
| 40 | defaultTTL = initialTTL; |
| 41 | } |
| 42 | |
| 43 | /** |
| 44 | * Initializes the master file reader and opens the specified master file. |
nothing calls this directly
no test coverage detected