Files
kotlin-fork/nj2k/testData/newJ2k/annotations/modifiersToAnnotationsFromPropertyAccessors.java
T
2019-04-03 11:24:19 +03:00

11 lines
371 B
Java
Vendored

public class WithModifiersOnAccessors {
private synchronized void methSync() {}
protected strictfp void methStrict() {}
private int sync = 0;
public synchronized int getSync() { return sync; }
public synchronized void setSync(int sync) { this.sync = sync; }
public double strict = 0.0;
public strictfp double getStrict() { return strict; }
}