javanano_generator.h
#include <google/protobuf/compiler/javanano/javanano_generator.h>
namespace google::protobuf::compiler::javanano
Generates Java nano code for a given .proto file.
Classes in this file | |
---|---|
CodeGenerator implementation which generates Java nano code. |
class JavaNanoGenerator: public CodeGenerator
#include <google/protobuf/compiler/javanano/javanano_generator.h>
namespace google::protobuf::compiler::javanano
CodeGenerator implementation which generates Java nano code.
If you create your own protocol compiler binary and you want it to support Java output for the nano runtime, you can do so by registering an instance of this CodeGenerator with the CommandLineInterface in your main() function.
Members | |
---|---|
| JavaNanoGenerator() |
| ~JavaNanoGenerator() |
implements CodeGenerator | |
virtual bool | Generate(const FileDescriptor * file, const string & parameter, GeneratorContext * generator_context, string * error) const Generates code for the given proto file, generating one or more files in the given output directory. more... |
virtual bool JavaNanoGenerator::Generate(
const FileDescriptor * file,
const string & parameter,
GeneratorContext * generator_context,
string * error) const
const FileDescriptor * file,
const string & parameter,
GeneratorContext * generator_context,
string * error) const
Generates code for the given proto file, generating one or more files in the given output directory.
A parameter to be passed to the generator can be specified on the command line. This is intended to be used to pass generator specific parameters. It is empty if no parameter was given. ParseGeneratorParameter (below), can be used to accept multiple parameters within the single parameter command line flag.
Returns true if successful. Otherwise, sets *error to a description of the problem (e.g. "invalid parameter") and returns false.