| OLD | NEW |
| (Empty) |
| 1 // Copyright 2016 The Chromium Authors. All rights reserved. | |
| 2 // Use of this source code is governed by a BSD-style license that can be | |
| 3 // found in the LICENSE file. | |
| 4 | |
| 5 package org.chromium.testing.robolectric.template; | |
| 6 | |
| 7 import java.nio.file.Path; | |
| 8 | |
| 9 /** | |
| 10 * Simple container class for path info about template files. | |
| 11 */ | |
| 12 public class TemplateFileInfo { | |
| 13 | |
| 14 private Path mOutputFile; | |
| 15 private Path mTemplateFile; | |
| 16 | |
| 17 public TemplateFileInfo(Path templateFile, Path outputFile) { | |
| 18 mOutputFile = outputFile; | |
| 19 mTemplateFile = templateFile; | |
| 20 } | |
| 21 | |
| 22 public Path getTemplateFile() { | |
| 23 return mTemplateFile; | |
| 24 } | |
| 25 | |
| 26 public Path getOutputFile() { | |
| 27 return mOutputFile; | |
| 28 } | |
| 29 } | |
| OLD | NEW |