I am writing a class where the same xml is used between some methods.
eg.
/** * Sample Response: * <xmp> * <myXML> * <stuff> data </stuff> * </myXML> * </xmp> */ CommonXML Method1(); /** * Sample Submission: * <xmp> * <myXML> * <stuff> data </stuff> * </myXML> * </xmp> */ void Method2(CommonXML xml);
I would like to write my documentation so that in case of an xml change, I have one resource for the change, and not for updating the entire JavaDoc for the affected methods.
Does anyone know how to do this?
source share