Community
Participate
Working Groups
IField field= type.getField(propertyName);
if (field.exists()) {
String content= getHTMLContentFromSource(field);
// looks like documentation is on the property-method
if( content == null && ( isGetter || isSetter ) ) {
content = getHTMLContentFromSource(type.getMethod(propertyName+"Property",new String[0])); //$NON-NLS-1$
}
if (content != null) {
if (isGetter) {
content= Messages.format(JavaDocMessages.JavadocContentAccess2_getproperty_message, new Object[] { propertyName, content });