For example, if i have MyObject with fields SomeThing getFieldOne() SomeThing getFieldTwo() whatever, it is obvious, that while javadocking getFieldOne() and getFieldTwo() , i write there an info about the fields of MyObject retuned.
But what to do, if sime fields are not in MyObject directly via getters avaible, but i must call a static adapter like:
ObjectContainer.getFieldThree(myObject) ?
The info about the fieldTree is logically related to MyObject, howewer it is no getter method there by design( do not ask me why, i have not designed it , i just want to determine the best way to comment that).
I want let a user, reading a JavaDoc about MyObject, know, that there exist a fieldTree, what is logically related to MyObject, and to get it, you must call ObjectContainer.getFieldThree(myObject) – J J May 13 '16 at 12:51