diff options
author | Mark Spruiell <mes@zeroc.com> | 2016-03-04 13:12:01 -0800 |
---|---|---|
committer | Mark Spruiell <mes@zeroc.com> | 2016-03-04 13:12:01 -0800 |
commit | c6d4e9e1f14c3b96daf8529c4e46c7c30021ad94 (patch) | |
tree | d68ff63b80885459261ccd119560f0dcbabbfe16 /cpp/src/slice2java/Gen.h | |
parent | ICE-6864 - C# fixes for doc comments on proxies (diff) | |
download | ice-c6d4e9e1f14c3b96daf8529c4e46c7c30021ad94.tar.bz2 ice-c6d4e9e1f14c3b96daf8529c4e46c7c30021ad94.tar.xz ice-c6d4e9e1f14c3b96daf8529c4e46c7c30021ad94.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 2617eb9905e..2c15bede991 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); }; |