1This is the concatenated contents of all files inside the placeholder srcjar.
2
3
4## Contents of org/jni_zero/TinySample.java:
5//
6// This file is an empty placeholder. It was generated by //third_party/jni_zero/jni_zero.py
7//
8
9package org.jni_zero;
10
11public interface TinySample {
12  public interface Natives {
13    public boolean bar(int a);
14    public void foo();
15  }
16}
17
18
19
20## Contents of org/jni_zero/extrapackage/ImportsTinySample.java:
21//
22// This file is an empty placeholder. It was generated by //third_party/jni_zero/jni_zero.py
23//
24
25package org.jni_zero.extrapackage;
26
27public interface ImportsTinySample {
28  public interface Natives {
29    public void asdf();
30  }
31}
32
33
34