dep-protobuf/editions/codegen_tests/edition2023_java_outer_classname_future.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

38 lines
1 KiB
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;
// This is the default outer classname in edition 2024.
option java_outer_classname = "Edition2023JavaOuterClassnameFutureProto";
message Edition2023OuterClassnameFutureMessage {
int32 foo = 1;
message NestedMessage {
int32 bar = 1;
}
enum NestedEnum {
NESTED_ENUM_UNKNOWN = 0;
}
}
enum Edition2023OuterClassnameFutureEnum {
JAVA_OUTERCLASSNAME_FUTURE_ENUM_UNKNOWN = 0;
}
service Edition2023OuterclassnameFutureService {
// Edition2023OuterClassnameFutureService.Method
rpc Method(Edition2023OuterClassnameFutureMessage.NestedMessage)
returns (Edition2023OuterClassnameFutureMessage) {}
}