If I have a class like this:
class Person {
private int age;
public int getAge() {
return age;
}
public boolean isAdult() {
return age > 19;
}
}
I can get the age
with EL like this:
${person.age}
But, I cannot figure out how to get the isAdult()
. How can I get this?