Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(962)

Side by Side Diff: third_party/robolectric/template_processor/src/org/chromium/testing/robolectric/template/TemplateFileInfo.java

Issue 2200413004: Pass template files explicitly to Robolectric template processor. (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Pass template files explicitly to Robolectric template processor. Created 4 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View unified diff | Download patch
OLDNEW
(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 Path mOutputFile;
jbudorick 2016/08/03 22:24:03 private
15 Path mTemplateFile;
jbudorick 2016/08/03 22:24:03 private
mikecase (-- gone --) 2016/08/03 22:29:55 made private
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 }
OLDNEW

Powered by Google App Engine
This is Rietveld 408576698