package proto; public class BasePull { int t; public int getT() { update(); return t; } public void setT(int t) { this.t = t; } private void update() { } }