aboutsummaryrefslogtreecommitdiffstats
path: root/src/google/protobuf/unittest_simple_micro.proto
diff options
context:
space:
mode:
authorWink Saville <wink@google.com>2010-05-29 13:13:38 -0700
committerWink Saville <wink@google.com>2010-05-29 13:13:38 -0700
commite2d542951c059563a3b7f74c257dac4f222d9dc5 (patch)
tree2025d0dd0c8963081fef2e340a2789ae6e24f652 /src/google/protobuf/unittest_simple_micro.proto
parentd0332953cda33fb4f8e24ebff9c49159b69c43d6 (diff)
downloadexternal_protobuf-e2d542951c059563a3b7f74c257dac4f222d9dc5.zip
external_protobuf-e2d542951c059563a3b7f74c257dac4f222d9dc5.tar.gz
external_protobuf-e2d542951c059563a3b7f74c257dac4f222d9dc5.tar.bz2
Add support for Java micro protobuf's to protobuf-2.3.0.
See README.android for additional information. Change-Id: I6693e405c0d651eacacd3227a876129865dd0d3c
Diffstat (limited to 'src/google/protobuf/unittest_simple_micro.proto')
-rw-r--r--src/google/protobuf/unittest_simple_micro.proto52
1 files changed, 52 insertions, 0 deletions
diff --git a/src/google/protobuf/unittest_simple_micro.proto b/src/google/protobuf/unittest_simple_micro.proto
new file mode 100644
index 0000000..057bf3d
--- /dev/null
+++ b/src/google/protobuf/unittest_simple_micro.proto
@@ -0,0 +1,52 @@
+// Protocol Buffers - Google's data interchange format
+// Copyright 2008 Google Inc. All rights reserved.
+// http://code.google.com/p/protobuf/
+//
+// Redistribution and use in source and binary forms, with or without
+// modification, are permitted provided that the following conditions are
+// met:
+//
+// * Redistributions of source code must retain the above copyright
+// notice, this list of conditions and the following disclaimer.
+// * Redistributions in binary form must reproduce the above
+// copyright notice, this list of conditions and the following disclaimer
+// in the documentation and/or other materials provided with the
+// distribution.
+// * Neither the name of Google Inc. nor the names of its
+// contributors may be used to endorse or promote products derived from
+// this software without specific prior written permission.
+//
+// THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
+// "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
+// LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
+// A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
+// OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
+// SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
+// LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
+// DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
+// THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
+// (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
+// OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
+
+// Author: wink@google.com (Wink Saville)
+//
+
+package protobuf_unittest_import;
+
+option java_package = "com.google.protobuf.micro";
+
+message SimpleMessageMicro {
+ message NestedMessage {
+ optional int32 bb = 1;
+ }
+
+ enum NestedEnum {
+ FOO = 1;
+ BAR = 2;
+ BAZ = 3;
+ }
+
+ optional int32 d = 1 [default = 123];
+ optional NestedMessage nested_msg = 2;
+ optional NestedEnum default_nested_enum = 3 [default = BAZ];
+}