1 4 5 9 package examples; 10 11 14 public class MyJavaBean { 15 String name; 16 String city; 17 String state; 18 String secret; 19 20 public MyJavaBean(String name, String city, String state, String secret) { 21 this.name = name; 22 this.city = city; 23 this.state = state; 24 this.secret = secret; 25 } 26 27 public String getName() { return name; } 28 public String getCity() { return city; } 29 public String getState() { return state; } 30 } 31 | Popular Tags |