Commit 4df74102 by gyumin Committed by Ian Baker

Add javadoc for Bundleable CREATOR fields

It's to comply with style guide as they are public.

PiperOrigin-RevId: 360914363
parent 7a02346d
...@@ -187,6 +187,7 @@ public final class AudioAttributes implements Bundleable { ...@@ -187,6 +187,7 @@ public final class AudioAttributes implements Bundleable {
return bundle; return bundle;
} }
/** Object that can restore {@link AudioAttributes} from a {@link Bundle}. */
public static final Creator<AudioAttributes> CREATOR = public static final Creator<AudioAttributes> CREATOR =
bundle -> { bundle -> {
Builder builder = new Builder(); Builder builder = new Builder();
......
...@@ -103,6 +103,7 @@ public final class DeviceInfo implements Bundleable { ...@@ -103,6 +103,7 @@ public final class DeviceInfo implements Bundleable {
return bundle; return bundle;
} }
/** Object that can restore {@link DeviceInfo} from a {@link Bundle}. */
public static final Creator<DeviceInfo> CREATOR = public static final Creator<DeviceInfo> CREATOR =
bundle -> { bundle -> {
int playbackType = int playbackType =
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or sign in to comment