github.com/c-darwin/mobile@v0.0.0-20160313183840-ff625c46f7c9/misc/androidstudio/src/main/groovy/org/golang/mobile/OutputFileTask.java (about) 1 /** 2 * Copyright 2015 The Go Authors. All rights reserved. 3 * Use of this source code is governed by a BSD-style 4 * license that can be found in the LICENSE file. 5 */ 6 7 package org.golang.mobile; 8 9 import java.io.File; 10 11 /** 12 * A task that outputs a file. 13 */ 14 public interface OutputFileTask { 15 File getOutputFile(); 16 }