*/
public SimpleName getValueGetterName(PropertyDeclaration property) {
if (property == null) {
throw new IllegalArgumentException("property must not be null"); //$NON-NLS-1$
}
JavaName name = JavaName.of(property.getName());
if (isBoolean(property)) {
name.addFirst("is"); //$NON-NLS-1$
} else {
name.addFirst("get"); //$NON-NLS-1$
}
return factory.newSimpleName(name.toMemberName());
}