Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 9adc59c6 authored by TreeHugger Robot's avatar TreeHugger Robot Committed by Android (Google) Code Review
Browse files

Merge "Add Java equal and toString annotations."

parents d410829d f9dcdea9
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.automotive.vehicle;
@VintfStability
@JavaDerive(equals=true, toString=true) @VintfStability
parcelable CreateUserRequest {
  int requestId;
  android.hardware.automotive.vehicle.UserInfo newUserInfo;
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.automotive.vehicle;
@VintfStability
@JavaDerive(equals=true, toString=true) @VintfStability
parcelable CreateUserResponse {
  int requestId;
  android.hardware.automotive.vehicle.CreateUserStatus status = android.hardware.automotive.vehicle.CreateUserStatus.SUCCESS;
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.automotive.vehicle;
@VintfStability
@JavaDerive(equals=true, toString=true) @VintfStability
parcelable GetValueRequest {
  long requestId;
  android.hardware.automotive.vehicle.VehiclePropValue prop;
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.automotive.vehicle;
@VintfStability
@JavaDerive(equals=true, toString=true) @VintfStability
parcelable GetValueRequests {
  android.hardware.automotive.vehicle.GetValueRequest[] payloads;
  @nullable ParcelFileDescriptor sharedMemoryFd;
+1 −1
Original line number Diff line number Diff line
@@ -32,7 +32,7 @@
// later when a module using the interface is updated, e.g., Mainline modules.

package android.hardware.automotive.vehicle;
@VintfStability
@JavaDerive(equals=true, toString=true) @VintfStability
parcelable GetValueResult {
  long requestId;
  android.hardware.automotive.vehicle.StatusCode status = android.hardware.automotive.vehicle.StatusCode.OK;
Loading