dep-protobuf/editions/codegen_tests/edition2023_java_multiple_files.proto
Mike Kruskal 6de35c6d2f Add Java (mutable) language feature handling to 2024 transform.
This handles all of the global java option changes, as well as the mutable/proto1 features.  These can't be reasonably separated because they're all so interdependent.

PiperOrigin-RevId: 808602378
2025-09-18 08:56:54 -07:00

35 lines
917 B
Protocol Buffer

// Protocol Buffers - Google's data interchange format
// Copyright 2023 Google Inc. All rights reserved.
//
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file or at
// https://developers.google.com/open-source/licenses/bsd
edition = "2023";
package protobuf_editions_test.edition2023;
option java_package = "com.google.protobuf.editions.test.edition2023";
option java_multiple_files = true;
message Edition2023JavaMultipleFilesMessage {
int32 foo = 1;
message NestedMessage {
int32 bar = 1;
}
enum NestedEnum {
NESTED_ENUM_UNKNOWN = 0;
}
}
enum Edition2023JavaMultipleFilesEnum {
JAVA_MULTIPLE_FILES_ENUM_UNKNOWN = 0;
}
service Edition2023JavaMultipleFilesService {
// Edition2023JavaMultipleFilesService.Method
rpc Method(Edition2023JavaMultipleFilesMessage.NestedMessage)
returns (Edition2023JavaMultipleFilesMessage) {}
}