src/share/classes/com/sun/tools/doclets/internal/toolkit/builders/MemberSummaryBuilder.java

changeset 2413
fe033d997ddf
parent 2035
a2a5ad0853ed
child 2525
2eb010b6cb22
equal deleted inserted replaced
2412:bf8edbcae43a 2413:fe033d997ddf
382 //add "[GS]ets the value of the property PROPERTY_NAME." 382 //add "[GS]ets the value of the property PROPERTY_NAME."
383 if (isSetter) { 383 if (isSetter) {
384 commentTextBuilder.append( 384 commentTextBuilder.append(
385 MessageFormat.format( 385 MessageFormat.format(
386 configuration.getText("doclet.PropertySetterWithName"), 386 configuration.getText("doclet.PropertySetterWithName"),
387 Util.propertyNameFromMethodName(member.name()))); 387 Util.propertyNameFromMethodName(configuration, member.name())));
388 } 388 }
389 if (isGetter) { 389 if (isGetter) {
390 commentTextBuilder.append( 390 commentTextBuilder.append(
391 MessageFormat.format( 391 MessageFormat.format(
392 configuration.getText("doclet.PropertyGetterWithName"), 392 configuration.getText("doclet.PropertyGetterWithName"),
393 Util.propertyNameFromMethodName(member.name()))); 393 Util.propertyNameFromMethodName(configuration, member.name())));
394 } 394 }
395 if (propertyDoc.commentText() != null 395 if (propertyDoc.commentText() != null
396 && !propertyDoc.commentText().isEmpty()) { 396 && !propertyDoc.commentText().isEmpty()) {
397 commentTextBuilder.append(" \n @propertyDescription "); 397 commentTextBuilder.append(" \n @propertyDescription ");
398 } 398 }

mercurial