aboutsummaryrefslogtreecommitdiffhomepage
path: root/src/tools/android/java/com/google/devtools/build/android/AndroidDataWritingVisitor.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/tools/android/java/com/google/devtools/build/android/AndroidDataWritingVisitor.java')
-rw-r--r--src/tools/android/java/com/google/devtools/build/android/AndroidDataWritingVisitor.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/tools/android/java/com/google/devtools/build/android/AndroidDataWritingVisitor.java b/src/tools/android/java/com/google/devtools/build/android/AndroidDataWritingVisitor.java
index 55ce652bf1..01c8106afb 100644
--- a/src/tools/android/java/com/google/devtools/build/android/AndroidDataWritingVisitor.java
+++ b/src/tools/android/java/com/google/devtools/build/android/AndroidDataWritingVisitor.java
@@ -41,7 +41,8 @@ public interface AndroidDataWritingVisitor {
* @param relativeDestinationPath The relative destination path to write the resource to.
* @throws IOException if there are errors during copying.
*/
- void copyResource(Path source, String relativeDestinationPath) throws IOException;
+ void copyResource(Path source, String relativeDestinationPath)
+ throws IOException;
/**
* Adds a xml string fragment to the values file.
@@ -49,5 +50,6 @@ public interface AndroidDataWritingVisitor {
* @param key Used to ensure a constant order of the written xml.
* @param xmlFragment the xml fragment as an Iterable<String> which allows lazy generation.
*/
+ // TODO(corysmith): Change this to pass in a xml writer. Safer all around.
void writeToValuesXml(FullyQualifiedName key, Iterable<String> xmlFragment);
}