diff options
author | Mark Spruiell <mes@zeroc.com> | 2016-03-04 13:12:01 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2016-03-04 15:59:46 -0800 |
commit | 753f7c3b00390efa50abe26fe8ce35f82091c915 (patch) | |
tree | 0450719b5ce5eee781ae9fadf0dc9bcffc247828 /cpp/src/slice2java/Gen.h | |
parent | ICE-6864 - C# fixes for doc comments on proxies (diff) | |
download | ice-753f7c3b00390efa50abe26fe8ce35f82091c915.tar.bz2 ice-753f7c3b00390efa50abe26fe8ce35f82091c915.tar.xz ice-753f7c3b00390efa50abe26fe8ce35f82091c915.zip |
ICE-6864 - Java changes for Slice docs
Diffstat (limited to 'cpp/src/slice2java/Gen.h')
-rw-r--r-- | cpp/src/slice2java/Gen.h | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/cpp/src/slice2java/Gen.h b/cpp/src/slice2java/Gen.h index 1b65bf71f9b..bbcd2cb8908 100644 --- a/cpp/src/slice2java/Gen.h +++ b/cpp/src/slice2java/Gen.h @@ -43,7 +43,7 @@ protected: std::string getAsyncCallbackInterface(const OperationPtr&, const std::string&); std::string getAsyncCallbackBaseClass(const OperationPtr&, bool); - std::string getLambdaResposeCB(const OperationPtr&, const std::string&); + std::string getLambdaResponseCB(const OperationPtr&, const std::string&); std::vector<std::string> getParamsAsyncLambda(const OperationPtr&, const std::string&, bool context = false, bool sentCB = false, bool optionalMapping = false, @@ -110,12 +110,14 @@ protected: static StringList splitComment(const ContainedPtr&); static void writeDocComment(::IceUtilInternal::Output&, const ContainedPtr&, const std::string&, const std::string& = ""); + static void writeDocComment(::IceUtilInternal::Output&, const std::string&, const std::string&); static void writeDocCommentOp(::IceUtilInternal::Output&, const OperationPtr&); static void writeDocCommentAsync(::IceUtilInternal::Output&, const OperationPtr&, ParamDir, const std::string& = ""); static void writeDocCommentAMI(::IceUtilInternal::Output&, const OperationPtr&, ParamDir, const std::string& = "", - const std::string& = "", const std::string& = ""); + const std::string& = "", const std::string& = "", const std::string& = "", + const std::string& = ""); static void writeDocCommentParam(::IceUtilInternal::Output&, const OperationPtr&, ParamDir, bool = true); }; |