I like to use custom getters to show full data. eg:
class Person {
String fisrtName;
String lastName;
// my custom getter
public String getFullName() {
return firstName + " " + lastName;
}
}
Which are the best options to add this kind of getters? Does @RooJavaBean support this?


Reply With Quote