// "Create getter and setter for 's'" "true-preview" class A { private String s; String getS() { return s; } void setS(String s) { this.s = s; } }