source:
java2python/core/src/test/cyclicref/testcode/Q.java
Last change on this file was 1188, checked in by , 7 weeks ago | |
---|---|
File size: 234 bytes |
Line | |
---|---|
1 | package testcode; |
2 | |
3 | import org.eclipse.jdt.annotation.NonNull; |
4 | |
5 | /** |
6 | * Test translation of cyclic refs. P refers to Q which refers to P. |
7 | */ |
8 | public class Q { |
9 | |
10 | private P p = null; |
11 | |
12 | public void join(@NonNull P p) { |
13 | this.p = p; |
14 | } |
15 | |
16 | } |
Note:
See TracBrowser
for help on using the repository browser.