Deprecate getContent
and add getText
as it is clearer that it related to textual output as compared to the word content that is broader in nature.
Comment From: apappascs
Hi @markpollack ,
There seems to be a slight ambiguity in the issue's title and description:
- The title suggests renaming
getContent
togetText
. - The description suggests deprecating
getContent
and addinggetText
. For example: ``` /** - @deprecated in favor of {@link #getText()}. */ @Deprecated String getContent();
String getText(); ```
Could you clarify the desired approach here?
Comment From: markpollack
Sorry, yes ,the idea is to deprecate first, which as been done for M5, and now in M6 we will remove the deprecation. Going to close this issue as done as there will be another issue to remove all deprecated methods. Thanks for the comment.