public class _protectedSetter { private String x = null; public String getX() { return "OK"; } protected void setX(String x) { this.x = x; } }