Let's assume I have classes A
, B
, and C
where class C
has readable and writable properties:
public class C {
private int i = 0;
// Writable.
public void increment() { i++; }
// Readable.
public int getScore() { return i; }
}
Is it possible to only let A
use the increment()
method and only let B
use the getScore()
method?