AsciiDocを使用してプロジェクトを文書化したいと思います。AsciiDocカスタム注釈の値のみを含める
メソッドで処理されているステップの詳細を説明するコメントを持つクラスがあります。これらのコメントを私の.adocの特定のセクションの内容にしたいと思います。
public RequestResponse processRequest(UserRequest request){
/* First retrieve info from db calling the stored procedure
dbo.StoredProcedure with input parameters A,B,C */
DbResponse dbResponse = dao.getResponse(request);
// Call method to calculate all scenarios for the Example request
CalcResult calcResult = util.calculateStuff(request.getAmountList());
/* Format the response to include the fields from the calcResult as well
as the request details returned from the DB result set */
return util.formatResponse(dbResponse,calcResult);
}
は最終的に、このドキュメントは、他の開発者は、特定のRESTは彼らがソースコードにアクセスし、すべての手順を見てなくても、プロセスを呼び出す方法の概要を提供するために使用されるだろう。
私はAsciiDocを初めて使用しています。このユースケースでは、オフベースになる可能性があります。
あなたの質問は正確には何ですか?問い合わせ方法については、http://stackoverflow.com/help/how-to-askを参照してください。 –