has_method support for primitive fields in java runtime. Changed: idl.h, FlatBufferBuilder.java , idl_gen_general.cpp, idl_parser.cpp, flatc.cpp (#5468)

* has_method support for primitive fields in java runtime

* adding the new flag to flatc

* addressing the review comments
This commit is contained in:
Edward
2019-08-19 12:46:48 -07:00
committed by Wouter van Oortmerssen
parent acc9990abd
commit a20e71ac96
5 changed files with 38 additions and 0 deletions

View File

@@ -528,6 +528,7 @@ struct IDLOptions {
bool size_prefixed;
std::string root_type;
bool force_defaults;
bool java_primitive_has_method;
std::vector<std::string> cpp_includes;
// Possible options for the more general generator below.
@@ -602,6 +603,7 @@ struct IDLOptions {
protobuf_ascii_alike(false),
size_prefixed(false),
force_defaults(false),
java_primitive_has_method(false),
lang(IDLOptions::kJava),
mini_reflect(IDLOptions::kNone),
lang_to_generate(0),
@@ -927,6 +929,8 @@ class Parser : public ParserState {
extern std::string MakeCamel(const std::string &in, bool first = true);
extern std::string MakeScreamingCamel(const std::string &in);
// Generate text (JSON) from a given FlatBuffer, and a given Parser
// object that has been populated with the corresponding schema.
// If ident_step is 0, no indentation will be generated. Additionally,